InstanceOwnerQueryResult 构造函数

定义

初始化 InstanceOwnerQueryResult 类的实例。

重载

InstanceOwnerQueryResult()

使用一个空的查询结果集初始化 InstanceOwnerQueryResult 类的实例。

InstanceOwnerQueryResult(IDictionary<Guid,IDictionary<XName,InstanceValue>>)

使用作为参数传递的字典(包含与实例所有者关联的 GUID)和包含与这些实例所有者关联的元数据的字典来初始化 InstanceOwnerQueryResult 类的实例。

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

使用单个查询结果初始化 类的 InstanceOwnerQueryResult 实例,其中包含实例所有者的 GUID 以及作为参数传递的实例存储中与该实例所有者关联的元数据。

InstanceOwnerQueryResult()

使用一个空的查询结果集初始化 InstanceOwnerQueryResult 类的实例。

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

适用于

InstanceOwnerQueryResult(IDictionary<Guid,IDictionary<XName,InstanceValue>>)

使用作为参数传递的字典(包含与实例所有者关联的 GUID)和包含与这些实例所有者关联的元数据的字典来初始化 InstanceOwnerQueryResult 类的实例。

public:
 InstanceOwnerQueryResult(System::Collections::Generic::IDictionary<Guid, System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Runtime::DurableInstancing::InstanceValue ^> ^> ^ instanceOwners);
public InstanceOwnerQueryResult (System.Collections.Generic.IDictionary<Guid,System.Collections.Generic.IDictionary<System.Xml.Linq.XName,System.Runtime.DurableInstancing.InstanceValue>> instanceOwners);
new System.Runtime.DurableInstancing.InstanceOwnerQueryResult : System.Collections.Generic.IDictionary<Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> -> System.Runtime.DurableInstancing.InstanceOwnerQueryResult
Public Sub New (instanceOwners As IDictionary(Of Guid, IDictionary(Of XName, InstanceValue)))

参数

instanceOwners
IDictionary<Guid,IDictionary<XName,InstanceValue>>

一个字典,其中包含表示查询结果集的实例所有者的 GUID 和元数据。 元数据本身包含在包含元数据属性的名称和值的其他字典中。

适用于

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

使用单个查询结果初始化 类的 InstanceOwnerQueryResult 实例,其中包含实例所有者的 GUID 以及作为参数传递的实例存储中与该实例所有者关联的元数据。

public:
 InstanceOwnerQueryResult(Guid instanceOwnerId, System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Runtime::DurableInstancing::InstanceValue ^> ^ metadata);
public InstanceOwnerQueryResult (Guid instanceOwnerId, System.Collections.Generic.IDictionary<System.Xml.Linq.XName,System.Runtime.DurableInstancing.InstanceValue> metadata);
new System.Runtime.DurableInstancing.InstanceOwnerQueryResult : Guid * System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> -> System.Runtime.DurableInstancing.InstanceOwnerQueryResult
Public Sub New (instanceOwnerId As Guid, metadata As IDictionary(Of XName, InstanceValue))

参数

instanceOwnerId
Guid

与实例所有者关联的 GUID。

metadata
IDictionary<XName,InstanceValue>

与字典中实例所有者关联的元数据(包含属性名称及其值)。

适用于