-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
ActivatableWorkflowsQueryResult.xml
133 lines (127 loc) · 12 KB
/
ActivatableWorkflowsQueryResult.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<Type Name="ActivatableWorkflowsQueryResult" FullName="System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult">
<TypeSignature Language="C#" Value="public sealed class ActivatableWorkflowsQueryResult : System.Runtime.DurableInstancing.InstanceStoreQueryResult" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit ActivatableWorkflowsQueryResult extends System.Runtime.DurableInstancing.InstanceStoreQueryResult" />
<TypeSignature Language="DocId" Value="T:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class ActivatableWorkflowsQueryResult
Inherits InstanceStoreQueryResult" />
<TypeSignature Language="F#" Value="type ActivatableWorkflowsQueryResult = class
 inherit InstanceStoreQueryResult" />
<TypeSignature Language="C++ CLI" Value="public ref class ActivatableWorkflowsQueryResult sealed : System::Runtime::DurableInstancing::InstanceStoreQueryResult" />
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Runtime.DurableInstancing.InstanceStoreQueryResult</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Contains the results from executing the <see cref="T:System.Activities.DurableInstancing.QueryActivatableWorkflowsCommand" /> against an instance store.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
An instance store should periodically search for activatable workflow instances that belong to a workflow host that uses the store. It should raise the <xref:System.Activities.DurableInstancing.HasActivatableWorkflowEvent> when it finds an activatable instance in the persistence store. If the instance store does not find an activatable instance in the persistence store, it should continue to monitor the persistence store for any activatable instances.
After raising the HasActivatableWorkflowEvent, the instance store should stop monitoring the persistence store for activatable instances until it receives and executes the <xref:System.Activities.DurableInstancing.QueryActivatableWorkflowsCommand>. The monitoring continues only if the command execution does not return any activatable workflow instances.
When a generic host receives this event, it executes the <xref:System.Activities.DurableInstancing.QueryActivatableWorkflowsCommand> against the instance store to obtain activation parameters required to create a workflow host. The generic host uses these activation parameters to create a workflow host, which in turn loads and runs the service instance. The activation parameters for the WAS activation type are: Site Name, Application Path (relative to the site), and Service Path (relative to the application). An instance store could return multiple sets of these three activation parameters.
A generic host is a host that has an XName parameter named **ActivationType**, which should be set to a value supported by the instance store. Currently, the SQL Workflow Instance Store supports generic hosts with ActivationType parameter set to value: **WAS**. If the ActivationType is not set at all, the SQL Workflow Instance Store treats the host as a generic host.
> [!NOTE]
> The Workflow Management Service that ships with the code named "Dublin" (Application Server Extensions for .NET 4.0) is a generic host that has the activation type set to **WAS**.
]]></format>
</remarks>
</Docs>
<Members>
<MemberGroup MemberName=".ctor">
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Docs>
<summary>Initializes an instance of the <see cref="T:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" /> class.</summary>
</Docs>
</MemberGroup>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ActivatableWorkflowsQueryResult ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 ActivatableWorkflowsQueryResult();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes an instance of the <see cref="T:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ActivatableWorkflowsQueryResult (System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object> parameters);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Collections.Generic.IDictionary`2<class System.Xml.Linq.XName, object> parameters) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.#ctor(System.Collections.Generic.IDictionary{System.Xml.Linq.XName,System.Object})" />
<MemberSignature Language="VB.NET" Value="Public Sub New (parameters As IDictionary(Of XName, Object))" />
<MemberSignature Language="F#" Value="new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult : System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj> -> System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" Usage="new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult parameters" />
<MemberSignature Language="C++ CLI" Value="public:
 ActivatableWorkflowsQueryResult(System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^ parameters);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="parameters" Type="System.Collections.Generic.IDictionary<System.Xml.Linq.XName,System.Object>" />
</Parameters>
<Docs>
<param name="parameters">A dictionary object containing activation parameters.</param>
<summary>Creates an instance of the <see cref="T:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" /> class and initializes the <see cref="P:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.ActivationParameters" /> property with the data in the dictionary object passed in as a parameter.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ActivatableWorkflowsQueryResult (System.Collections.Generic.IEnumerable<System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object>> parameters);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Collections.Generic.IEnumerable`1<class System.Collections.Generic.IDictionary`2<class System.Xml.Linq.XName, object>> parameters) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.IDictionary{System.Xml.Linq.XName,System.Object}})" />
<MemberSignature Language="VB.NET" Value="Public Sub New (parameters As IEnumerable(Of IDictionary(Of XName, Object)))" />
<MemberSignature Language="F#" Value="new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult : seq<System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj>> -> System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" Usage="new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult parameters" />
<MemberSignature Language="C++ CLI" Value="public:
 ActivatableWorkflowsQueryResult(System::Collections::Generic::IEnumerable<System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^> ^ parameters);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="parameters" Type="System.Collections.Generic.IEnumerable<System.Collections.Generic.IDictionary<System.Xml.Linq.XName,System.Object>>" />
</Parameters>
<Docs>
<param name="parameters">An enumerable dictionary object containing activation parameters.</param>
<summary>Creates an instance of the <see cref="T:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult" /> class and initializes the <see cref="P:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.ActivationParameters" /> property with the data in the enumerable dictionary object passed in as a parameter.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ActivationParameters">
<MemberSignature Language="C#" Value="public System.Collections.Generic.List<System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object>> ActivationParameters { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.List`1<class System.Collections.Generic.IDictionary`2<class System.Xml.Linq.XName, object>> ActivationParameters" />
<MemberSignature Language="DocId" Value="P:System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.ActivationParameters" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ActivationParameters As List(Of IDictionary(Of XName, Object))" />
<MemberSignature Language="F#" Value="member this.ActivationParameters : System.Collections.Generic.List<System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj>>" Usage="System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult.ActivationParameters" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Generic::List<System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^> ^ ActivationParameters { System::Collections::Generic::List<System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^> ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.List<System.Collections.Generic.IDictionary<System.Xml.Linq.XName,System.Object>></ReturnType>
</ReturnValue>
<Docs>
<summary>A list of activation parameters that a generic host uses to create a workflow host.</summary>
<value>A List object containing activation parameters.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>