forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkflowInstanceQuery.xml
77 lines (73 loc) · 3.64 KB
/
WorkflowInstanceQuery.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
<Type Name="WorkflowInstanceQuery" FullName="System.Activities.Tracking.WorkflowInstanceQuery">
<TypeSignature Language="C#" Value="public class WorkflowInstanceQuery : System.Activities.Tracking.TrackingQuery" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit WorkflowInstanceQuery extends System.Activities.Tracking.TrackingQuery" />
<TypeSignature Language="DocId" Value="T:System.Activities.Tracking.WorkflowInstanceQuery" />
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Activities.Tracking.TrackingQuery</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>When added to the <see cref="P:System.Activities.Tracking.TrackingProfile.Queries" /> collection, subscribes to workflow instance records when the tracking profile is created to subscribe to tracking records.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public WorkflowInstanceQuery ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Tracking.WorkflowInstanceQuery.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Creates a new instance of the <see cref="T:System.Activities.Tracking.WorkflowInstanceQuery" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="States">
<MemberSignature Language="C#" Value="public System.Collections.ObjectModel.Collection<string> States { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.ObjectModel.Collection`1<string> States" />
<MemberSignature Language="DocId" Value="P:System.Activities.Tracking.WorkflowInstanceQuery.States" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.ObjectModel.Collection<System.String></ReturnType>
</ReturnValue>
<Docs>
<summary>The subscribed states from the tracked workflow instance when the tracking records are created.</summary>
<value>The workflow states.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The returned records are filtered by the states in this collection.
Possible state values are described in the following table.
|State|Description|
|-----------|-----------------|
|Aborted|The workflow instance is aborted.|
|Completed|The workflow instance is completed.|
|Deleted|The workflow instance is deleted.|
|Idle|The workflow instance is idle.|
|Persisted|The workflow instance is persisted.|
|Resumed|The workflow instance is resumed.|
|Started|The workflow instance is started.|
|UnhandledException|The workflow instance encountered an unhandled exception.|
|Unloaded|The workflow instance is unloaded.|
|Canceled|The workflow instance is canceled.|
|Suspended|The workflow instance is suspended.|
|Terminated|The workflow instance is terminated.|
|Unsuspended|The workflow instance is unsuspended.|
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>