次の方法で共有


InstanceOwnerQueryResult コンストラクター

定義

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

オーバーロード

InstanceOwnerQueryResult()

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

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

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

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

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

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 と、パラメーターとして渡されるインスタンス ストア内のインスタンス所有者に関連付けられているメタデータで構成される 1 つのクエリ結果を使用して、 クラスのインスタンスを初期化します。

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>

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

適用対象