InstanceKey コンストラクター

定義

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

オーバーロード

InstanceKey(Guid)

渡されるインスタンス キーに関連付けられた GUID を使用して、InstanceKey クラスのインスタンスを初期化します。

InstanceKey(Guid, IDictionary<XName,InstanceValue>)

インスタンス キーに関連付けられた GUID とメタデータを使用して、InstanceKey クラスのインスタンスを初期化します。

InstanceKey(Guid)

渡されるインスタンス キーに関連付けられた GUID を使用して、InstanceKey クラスのインスタンスを初期化します。

public:
 InstanceKey(Guid value);
public InstanceKey (Guid value);
new System.Runtime.DurableInstancing.InstanceKey : Guid -> System.Runtime.DurableInstancing.InstanceKey
Public Sub New (value As Guid)

パラメーター

value
Guid

インスタンス キーに関連付けられている GUID。 Guid.Empty にすることはできません。

適用対象

InstanceKey(Guid, IDictionary<XName,InstanceValue>)

インスタンス キーに関連付けられた GUID とメタデータを使用して、InstanceKey クラスのインスタンスを初期化します。

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

パラメーター

value
Guid

インスタンス キーに関連付けられている GUID。 Guid.Empty にすることはできません。

metadata
IDictionary<XName,InstanceValue>

インスタンス キーに関連付けられたメタデータまたは null を含んでいるディクショナリです。

適用対象