InstanceOwnerQueryResult 建構函式

定義

初始化該 InstanceOwnerQueryResult 類別的實例。

多載

名稱 Description
InstanceOwnerQueryResult()

初始化該類別的實例 InstanceOwnerQueryResult ,並使用空查詢結果集。

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

使用以參數傳遞的字典初始化該 InstanceOwnerQueryResult 類別的實例,該參數包含與實例擁有者相關的 GUID,以及包含與這些實例擁有者相關的元資料的字典。

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

初始化該類別的實例 InstanceOwnerQueryResult ,使用一個由實例擁有者的 GUID 及實例儲存中與該實例擁有者相關的元資料(以參數傳遞)組成的查詢結果。

InstanceOwnerQueryResult()

初始化該類別的實例 InstanceOwnerQueryResult ,並使用空查詢結果集。

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

適用於

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

使用以參數傳遞的字典初始化該 InstanceOwnerQueryResult 類別的實例,該參數包含與實例擁有者相關的 GUID,以及包含與這些實例擁有者相關的元資料的字典。

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>

與實例擁有者相關的元資料(包含屬性名稱及其值)。

適用於