ActivatableWorkflowsQueryResult 构造函数

定义

初始化 ActivatableWorkflowsQueryResult 类的实例。

重载

ActivatableWorkflowsQueryResult()

初始化 ActivatableWorkflowsQueryResult 类的实例。

ActivatableWorkflowsQueryResult(IDictionary<XName,Object>)

创建 ActivatableWorkflowsQueryResult 类的实例,并使用以参数形式传入的字典对象中的数据实例化 ActivationParameters 属性。

ActivatableWorkflowsQueryResult(IEnumerable<IDictionary<XName,Object>>)

创建 ActivatableWorkflowsQueryResult 类的实例,并使用以参数形式传入的可枚举字典对象中的数据实例化 ActivationParameters 属性。

ActivatableWorkflowsQueryResult()

初始化 ActivatableWorkflowsQueryResult 类的实例。

public:
 ActivatableWorkflowsQueryResult();
public ActivatableWorkflowsQueryResult ();
Public Sub New ()

适用于

ActivatableWorkflowsQueryResult(IDictionary<XName,Object>)

创建 ActivatableWorkflowsQueryResult 类的实例,并使用以参数形式传入的字典对象中的数据实例化 ActivationParameters 属性。

public:
 ActivatableWorkflowsQueryResult(System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^ parameters);
public ActivatableWorkflowsQueryResult (System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object> parameters);
new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult : System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj> -> System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult
Public Sub New (parameters As IDictionary(Of XName, Object))

参数

parameters
IDictionary<XName,Object>

一个包含激活参数的字典对象。

适用于

ActivatableWorkflowsQueryResult(IEnumerable<IDictionary<XName,Object>>)

创建 ActivatableWorkflowsQueryResult 类的实例,并使用以参数形式传入的可枚举字典对象中的数据实例化 ActivationParameters 属性。

public:
 ActivatableWorkflowsQueryResult(System::Collections::Generic::IEnumerable<System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^> ^ parameters);
public ActivatableWorkflowsQueryResult (System.Collections.Generic.IEnumerable<System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object>> parameters);
new System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult : seq<System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj>> -> System.Activities.DurableInstancing.ActivatableWorkflowsQueryResult
Public Sub New (parameters As IEnumerable(Of IDictionary(Of XName, Object)))

参数

parameters
IEnumerable<IDictionary<XName,Object>>

一个包含激活参数的可枚举字典对象。

适用于