InstanceLockQueryResult Construtores

Definição

Inicializa uma instância da classe InstanceLockQueryResult.Initializes an instance of the InstanceLockQueryResult class.

Sobrecargas

InstanceLockQueryResult()

Inicializa uma instância da classe InstanceLockQueryResult com qualquer conjunto de resultados de consulta vazio.Initializes an instance of the InstanceLockQueryResult class with any empty query result set.

InstanceLockQueryResult(IDictionary<Guid,Guid>)

Inicializa uma instância da classe InstanceLockQueryResult e define a propriedade InstanceOwnerIds usando o dicionário de IDs de instância e as IDs de proprietário da instância.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)

Inicializa uma instância da classe InstanceLockQueryResult e define a propriedade InstanceOwnerIds usando um dicionário que contém o resultado da consulta única representado pela ID da instância e a ID do proprietário de instância.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()

Inicializa uma instância da classe InstanceLockQueryResult com qualquer conjunto de resultados de consulta vazio.Initializes an instance of the InstanceLockQueryResult class with any empty query result set.

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

Aplica-se a

InstanceLockQueryResult(IDictionary<Guid,Guid>)

Inicializa uma instância da classe InstanceLockQueryResult e define a propriedade InstanceOwnerIds usando o dicionário de IDs de instância e as IDs de proprietário da instância.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))

Parâmetros

instanceOwnerIds
IDictionary<Guid,Guid>

Um dicionário que representa o conjunto de resultados de consulta.A dictionary that represents the query result set. O dicionário tem a ID da instância como a chave e a ID do proprietário da instância detém o bloqueio na instância como o valor.The dictionary has instance ID as the key and ID of the instance owner who owns the lock on the instance as the value.

Aplica-se a

InstanceLockQueryResult(Guid, Guid)

Inicializa uma instância da classe InstanceLockQueryResult e define a propriedade InstanceOwnerIds usando um dicionário que contém o resultado da consulta única representado pela ID da instância e a ID do proprietário de instância.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)

Parâmetros

instanceId
Guid

A ID da instância.The ID of the instance.

instanceOwnerId
Guid

A ID do proprietário da instância que detém o bloqueio na instância representada pelo parâmetro instanceId.The ID of the instance owner who owns the lock on the instance represented by the instanceId parameter.

Aplica-se a