ECF Code Review
Federal Court Electronic Court Files
Public Member Functions | Public Attributes | Private Member Functions | Private Attributes | List of all members
DoxygenTest2.WF.Workflow1 Class Reference

Class Workflow1. This class cannot be inherited. More...

Inheritance diagram for DoxygenTest2.WF.Workflow1:
Inheritance graph
Collaboration diagram for DoxygenTest2.WF.Workflow1:
Collaboration graph

Public Member Functions

 Workflow1 ()
 Initializes a new instance of the Workflow1 class. More...
 

Public Attributes

Guid workflowId = default(System.Guid)
 The workflow identifier More...
 
SPWorkflowActivationProperties workflowProperties = new SPWorkflowActivationProperties()
 The workflow properties More...
 

Private Member Functions

void onWorkflowActivated1_Invoked (object sender, ExternalDataEventArgs e)
 Handles the Invoked event of the onWorkflowActivated1 control. More...
 
bool getD1Value ()
 Gets the d1 value. More...
 
bool getD2Value ()
 Gets the d2 value. More...
 
bool getD3Value ()
 Gets the d3 value. More...
 
bool getD4Value ()
 Gets the d4 value. More...
 
bool getD5Value ()
 Gets the d5 value. More...
 
bool getD6Value ()
 Gets the d6 value. More...
 
bool getD7Value ()
 Gets the d7 value. More...
 
void InitializeComponent ()
 Required method for Designer support - do not modify the contents of this method with the code editor. More...
 

Private Attributes

Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated onWorkflowActivated1
 

Detailed Description

Class Workflow1. This class cannot be inherited.

Definition at line 39 of file Workflow1.cs.

Constructor & Destructor Documentation

DoxygenTest2.WF.Workflow1.Workflow1 ( )

Initializes a new instance of the Workflow1 class.

Definition at line 44 of file Workflow1.cs.

45  {
47  }
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...

Member Function Documentation

bool DoxygenTest2.WF.Workflow1.getD1Value ( )
private

Gets the d1 value.

Returns
true if XXXX, false otherwise.

Definition at line 79 of file Workflow1.cs.

80  {
81  return true;
82  }
bool DoxygenTest2.WF.Workflow1.getD2Value ( )
private

Gets the d2 value.

Returns
true if XXXX, false otherwise.

Definition at line 87 of file Workflow1.cs.

88  {
89  return getD1Value();
90  }
bool getD1Value()
Gets the d1 value.
Definition: Workflow1.cs:79
bool DoxygenTest2.WF.Workflow1.getD3Value ( )
private

Gets the d3 value.

Returns
true if XXXX, false otherwise.

Definition at line 95 of file Workflow1.cs.

96  {
97  return getD2Value();
98  }
bool getD2Value()
Gets the d2 value.
Definition: Workflow1.cs:87
bool DoxygenTest2.WF.Workflow1.getD4Value ( )
private

Gets the d4 value.

Returns
true if XXXX, false otherwise.

Definition at line 103 of file Workflow1.cs.

104  {
105  return getD3Value();
106  }
bool getD3Value()
Gets the d3 value.
Definition: Workflow1.cs:95
bool DoxygenTest2.WF.Workflow1.getD5Value ( )
private

Gets the d5 value.

Returns
true if XXXX, false otherwise.

Definition at line 111 of file Workflow1.cs.

112  {
113  return getD2Value();
114  }
bool getD2Value()
Gets the d2 value.
Definition: Workflow1.cs:87
bool DoxygenTest2.WF.Workflow1.getD6Value ( )
private

Gets the d6 value.

Returns
true if XXXX, false otherwise.

Definition at line 119 of file Workflow1.cs.

120  {
121  return false;
122  }
bool DoxygenTest2.WF.Workflow1.getD7Value ( )
private

Gets the d7 value.

Returns
true if XXXX, false otherwise.

Definition at line 127 of file Workflow1.cs.

128  {
129  return getD2Value();
130  }
bool getD2Value()
Gets the d2 value.
Definition: Workflow1.cs:87
void DoxygenTest2.WF.Workflow1.InitializeComponent ( )
private

Required method for Designer support - do not modify the contents of this method with the code editor.

Definition at line 26 of file Workflow1.Designer.cs.

27  {
28  this.CanModifyActivities = true;
29  System.Workflow.ComponentModel.ActivityBind activitybind2 = new System.Workflow.ComponentModel.ActivityBind();
30  System.Workflow.Runtime.CorrelationToken correlationtoken1 = new System.Workflow.Runtime.CorrelationToken();
31  System.Workflow.ComponentModel.ActivityBind activitybind1 = new System.Workflow.ComponentModel.ActivityBind();
32  this.onWorkflowActivated1 = new Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated();
33  activitybind2.Name = "Workflow1";
34  activitybind2.Path = "workflowId";
35  //
36  // onWorkflowActivated1
37  //
38  correlationtoken1.Name = "workflowToken";
39  correlationtoken1.OwnerActivityName = "Workflow1";
40  this.onWorkflowActivated1.CorrelationToken = correlationtoken1;
41  this.onWorkflowActivated1.EventName = "OnWorkflowActivated";
42  this.onWorkflowActivated1.Name = "onWorkflowActivated1";
43  activitybind1.Name = "Workflow1";
44  activitybind1.Path = "workflowProperties";
45  this.onWorkflowActivated1.Invoked += new System.EventHandler<System.Workflow.Activities.ExternalDataEventArgs>(this.onWorkflowActivated1_Invoked);
46  this.onWorkflowActivated1.SetBinding(Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated.WorkflowIdProperty, ((System.Workflow.ComponentModel.ActivityBind)(activitybind2)));
47  this.onWorkflowActivated1.SetBinding(Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated.WorkflowPropertiesProperty, ((System.Workflow.ComponentModel.ActivityBind)(activitybind1)));
48  //
49  // Workflow1
50  //
51  this.Activities.Add(this.onWorkflowActivated1);
52  this.Name = "Workflow1";
53  this.CanModifyActivities = false;
54 
55  }
Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated onWorkflowActivated1
void onWorkflowActivated1_Invoked(object sender, ExternalDataEventArgs e)
Handles the Invoked event of the onWorkflowActivated1 control.
Definition: Workflow1.cs:63
void DoxygenTest2.WF.Workflow1.onWorkflowActivated1_Invoked ( object  sender,
ExternalDataEventArgs  e 
)
private

Handles the Invoked event of the onWorkflowActivated1 control.

Parameters
senderThe source of the event.
eThe ExternalDataEventArgs instance containing the event data.

Definition at line 63 of file Workflow1.cs.

64  {
65  bool dummy1 = getD1Value();
66  bool dummy2 = getD2Value();
67  bool dummy3 = getD3Value();
68  bool dummy4 = getD4Value();
69  bool dummy5 = getD5Value();
70  bool dummy6 = getD6Value();
71  bool dummy7 = getD7Value();
72 
73  }
bool getD7Value()
Gets the d7 value.
Definition: Workflow1.cs:127
bool getD3Value()
Gets the d3 value.
Definition: Workflow1.cs:95
bool getD1Value()
Gets the d1 value.
Definition: Workflow1.cs:79
bool getD2Value()
Gets the d2 value.
Definition: Workflow1.cs:87
bool getD5Value()
Gets the d5 value.
Definition: Workflow1.cs:111
bool getD4Value()
Gets the d4 value.
Definition: Workflow1.cs:103
bool getD6Value()
Gets the d6 value.
Definition: Workflow1.cs:119

Member Data Documentation

Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated DoxygenTest2.WF.Workflow1.onWorkflowActivated1
private

Definition at line 59 of file Workflow1.Designer.cs.

Guid DoxygenTest2.WF.Workflow1.workflowId = default(System.Guid)

The workflow identifier

Definition at line 52 of file Workflow1.cs.

SPWorkflowActivationProperties DoxygenTest2.WF.Workflow1.workflowProperties = new SPWorkflowActivationProperties()

The workflow properties

Definition at line 56 of file Workflow1.cs.


The documentation for this class was generated from the following files: