forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkflowInstanceState.xml
114 lines (106 loc) · 5.17 KB
/
WorkflowInstanceState.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<Type Name="WorkflowInstanceState" FullName="System.Activities.Hosting.WorkflowInstanceState">
<TypeSignature Language="C#" Value="public enum WorkflowInstanceState" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed WorkflowInstanceState extends System.Enum" />
<TypeSignature Language="DocId" Value="T:System.Activities.Hosting.WorkflowInstanceState" />
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Docs>
<summary>Specifies the state of a <see cref="T:System.Activities.Hosting.WorkflowInstance" />.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="Aborted">
<MemberSignature Language="C#" Value="Aborted" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Activities.Hosting.WorkflowInstanceState Aborted = int32(3)" />
<MemberSignature Language="DocId" Value="F:System.Activities.Hosting.WorkflowInstanceState.Aborted" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Hosting.WorkflowInstanceState</ReturnType>
</ReturnValue>
<Docs>
<summary>The <see cref="T:System.Activities.Hosting.WorkflowInstance" /> is aborted.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The workflow instance will be in this state after <xref:System.Activities.WorkflowApplication.Abort%2A> has been called. A workflow in this state is capable of being resumed using <xref:System.Activities.WorkflowApplication.Run%2A>.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Complete">
<MemberSignature Language="C#" Value="Complete" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Activities.Hosting.WorkflowInstanceState Complete = int32(2)" />
<MemberSignature Language="DocId" Value="F:System.Activities.Hosting.WorkflowInstanceState.Complete" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Hosting.WorkflowInstanceState</ReturnType>
</ReturnValue>
<Docs>
<summary>The <see cref="T:System.Activities.Hosting.WorkflowInstance" /> is complete.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
A workflow in this state has exited, and its <xref:System.Activities.WorkflowApplication.Completed%2A> or <xref:System.Activities.WorkflowInvoker.InvokeCompleted> event has executed.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Idle">
<MemberSignature Language="C#" Value="Idle" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Activities.Hosting.WorkflowInstanceState Idle = int32(0)" />
<MemberSignature Language="DocId" Value="F:System.Activities.Hosting.WorkflowInstanceState.Idle" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Hosting.WorkflowInstanceState</ReturnType>
</ReturnValue>
<Docs>
<summary>The <see cref="T:System.Activities.Hosting.WorkflowInstance" /> is idle.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
A workflow in this state is waiting on an incoming event, such as when executing a <xref:System.Activities.Statements.Pick> activity, or is waiting for the expiration of a timeout, such as when executing a <xref:System.Activities.Statements.Delay> activity.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Runnable">
<MemberSignature Language="C#" Value="Runnable" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Activities.Hosting.WorkflowInstanceState Runnable = int32(1)" />
<MemberSignature Language="DocId" Value="F:System.Activities.Hosting.WorkflowInstanceState.Runnable" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Hosting.WorkflowInstanceState</ReturnType>
</ReturnValue>
<Docs>
<summary>The <see cref="T:System.Activities.Hosting.WorkflowInstance" /> can be run.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
A workflow in this state has been created, but <xref:System.Activities.WorkflowApplication.Run%2A> has not been called.
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>