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>>

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

适用于