InstanceOwnerQueryResult Constructeurs

Définition

Initialise une instance de la InstanceOwnerQueryResult classe.

Surcharges

Nom Description
InstanceOwnerQueryResult()

Initialise une instance de la InstanceOwnerQueryResult classe avec un jeu de résultats de requête vide.

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

Initialise une instance de la classe à l’aide InstanceOwnerQueryResult du dictionnaire passé en tant que paramètre qui contient des GUID associés aux propriétaires et dictionnaires d’instances qui contiennent des métadonnées associées à ces propriétaires d’instances.

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Initialise une instance de la InstanceOwnerQueryResult classe avec un résultat de requête unique constitué du GUID du propriétaire de l’instance et des métadonnées associées à ce propriétaire d’instance dans le magasin d’instances transmis en tant que paramètres.

InstanceOwnerQueryResult()

Initialise une instance de la InstanceOwnerQueryResult classe avec un jeu de résultats de requête vide.

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

S’applique à

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

Initialise une instance de la classe à l’aide InstanceOwnerQueryResult du dictionnaire passé en tant que paramètre qui contient des GUID associés aux propriétaires et dictionnaires d’instances qui contiennent des métadonnées associées à ces propriétaires d’instances.

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)))

Paramètres

instanceOwners
IDictionary<Guid,IDictionary<XName,InstanceValue>>

Dictionnaire qui contient des GUID et des métadonnées des propriétaires d’instances représentant le jeu de résultats de requête. Les métadonnées elles-mêmes sont contenues dans des dictionnaires supplémentaires qui contiennent des noms et des valeurs de propriétés de métadonnées.

S’applique à

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Initialise une instance de la InstanceOwnerQueryResult classe avec un résultat de requête unique constitué du GUID du propriétaire de l’instance et des métadonnées associées à ce propriétaire d’instance dans le magasin d’instances transmis en tant que paramètres.

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))

Paramètres

instanceOwnerId
Guid

GUID associé au propriétaire de l’instance.

metadata
IDictionary<XName,InstanceValue>

Métadonnées associées au propriétaire de l’instance dans un dictionnaire (qui contient les noms des propriétés et leurs valeurs).

S’applique à