InstanceOwnerQueryResult コンストラクター

定義

InstanceOwnerQueryResult クラスのインスタンスを初期化します。

オーバーロード

名前 説明
InstanceOwnerQueryResult()

空のクエリ結果セットを使用して、 InstanceOwnerQueryResult クラスのインスタンスを初期化します。

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

インスタンス所有者に関連付けられた GUID と、これらのインスタンス所有者に関連付けられているメタデータを含むディクショナリを含むパラメーターとして渡されたディクショナリを使用して、 InstanceOwnerQueryResult クラスのインスタンスを初期化します。

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

インスタンス所有者の GUID と、パラメーターとして渡されたインスタンス ストア内のインスタンス所有者に関連付けられているメタデータで構成される単一のクエリ結果を使用して、 InstanceOwnerQueryResult クラスのインスタンスを初期化します。

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

インスタンス所有者の GUID と、パラメーターとして渡されたインスタンス ストア内のインスタンス所有者に関連付けられているメタデータで構成される単一のクエリ結果を使用して、 InstanceOwnerQueryResult クラスのインスタンスを初期化します。

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>

ディクショナリ内のインスタンス所有者に関連付けられたメタデータ (プロパティの名前とその値が含まれます)。

適用対象