共用方式為


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>

與字典中執行個體擁有者相關聯的中繼資料 (其中包含屬性的名稱及其值)。

適用於