ECF Code Review
Federal Court Electronic Court Files
Workflow1.Designer.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel;
3 using System.ComponentModel.Design;
4 using System.Collections;
5 using System.Drawing;
6 using System.Reflection;
7 using System.Workflow.ComponentModel.Compiler;
8 using System.Workflow.ComponentModel.Serialization;
9 using System.Workflow.ComponentModel;
10 using System.Workflow.ComponentModel.Design;
11 using System.Workflow.Runtime;
12 using System.Workflow.Activities;
13 using System.Workflow.Activities.Rules;
14 
15 namespace DoxygenTest2
16 {
17  public sealed partial class Workflow1
18  {
19  #region Designer generated code
20 
25  [System.Diagnostics.DebuggerNonUserCode]
26  private void InitializeComponent()
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  }
56 
57  #endregion
58 
59  private Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated onWorkflowActivated1;
60 
61  }
62 }
The WF namespace.
Definition: Workflow1.cs:34
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
Microsoft.SharePoint.WorkflowActions.OnWorkflowActivated onWorkflowActivated1
void onWorkflowActivated1_Invoked(object sender, ExternalDataEventArgs e)
Handles the Invoked event of the onWorkflowActivated1 control.
Definition: Workflow1.cs:63