InstanceLockQueryResult Constructors

Definition

Initializes an instance of the InstanceLockQueryResult class.

Overloads

InstanceLockQueryResult()

Initializes an instance of the InstanceLockQueryResult class with any empty query result set.

InstanceLockQueryResult(IDictionary<Guid,Guid>)

Initializes an instance of the InstanceLockQueryResult class and sets the InstanceOwnerIds property using the dictionary of instance IDs and instance owner IDs.

InstanceLockQueryResult(Guid, Guid)

Initializes an instance of the InstanceLockQueryResult class and sets the InstanceOwnerIds property using a dictionary that contains the single query result represented by the instance ID and the instance owner ID.

InstanceLockQueryResult()

Initializes an instance of the InstanceLockQueryResult class with any empty query result set.

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

Applies to

InstanceLockQueryResult(IDictionary<Guid,Guid>)

Initializes an instance of the InstanceLockQueryResult class and sets the InstanceOwnerIds property using the dictionary of instance IDs and instance owner IDs.

public:
 InstanceLockQueryResult(System::Collections::Generic::IDictionary<Guid, Guid> ^ instanceOwnerIds);
public InstanceLockQueryResult (System.Collections.Generic.IDictionary<Guid,Guid> instanceOwnerIds);
new System.Runtime.DurableInstancing.InstanceLockQueryResult : System.Collections.Generic.IDictionary<Guid, Guid> -> System.Runtime.DurableInstancing.InstanceLockQueryResult
Public Sub New (instanceOwnerIds As IDictionary(Of Guid, Guid))

Parameters

instanceOwnerIds
IDictionary<Guid,Guid>

A dictionary that represents the query result set. The dictionary has instance ID as the key and ID of the instance owner who owns the lock on the instance as the value.

Applies to

InstanceLockQueryResult(Guid, Guid)

Initializes an instance of the InstanceLockQueryResult class and sets the InstanceOwnerIds property using a dictionary that contains the single query result represented by the instance ID and the instance owner ID.

public:
 InstanceLockQueryResult(Guid instanceId, Guid instanceOwnerId);
public InstanceLockQueryResult (Guid instanceId, Guid instanceOwnerId);
new System.Runtime.DurableInstancing.InstanceLockQueryResult : Guid * Guid -> System.Runtime.DurableInstancing.InstanceLockQueryResult
Public Sub New (instanceId As Guid, instanceOwnerId As Guid)

Parameters

instanceId
Guid

The ID of the instance.

instanceOwnerId
Guid

The ID of the instance owner who owns the lock on the instance represented by the instanceId parameter.

Applies to