Share via


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이 포함된 사전입니다.

적용 대상