InstanceOwnerQueryResult Costruttori

Definizione

Inizializza un'istanza della InstanceOwnerQueryResult classe .

Overload

Nome Descrizione
InstanceOwnerQueryResult()

Inizializza un'istanza della InstanceOwnerQueryResult classe con un set di risultati di query vuoto.

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

Inizializza un'istanza della InstanceOwnerQueryResult classe utilizzando il dizionario passato come parametro che contiene GUID associati ai proprietari e ai dizionari dell'istanza che contengono metadati associati a questi proprietari di istanze.

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Inizializza un'istanza della InstanceOwnerQueryResult classe con un singolo risultato della query costituito dal GUID del proprietario dell'istanza e dai metadati associati al proprietario dell'istanza nell'archivio di istanze passato come parametri.

InstanceOwnerQueryResult()

Inizializza un'istanza della InstanceOwnerQueryResult classe con un set di risultati di query vuoto.

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

Si applica a

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

Inizializza un'istanza della InstanceOwnerQueryResult classe utilizzando il dizionario passato come parametro che contiene GUID associati ai proprietari e ai dizionari dell'istanza che contengono metadati associati a questi proprietari di istanze.

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

Parametri

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

Dizionario che contiene GUID e metadati dei proprietari di istanze che rappresentano il set di risultati della query. I metadati stessi sono contenuti in dizionari aggiuntivi che contengono nomi e valori delle proprietà dei metadati.

Si applica a

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Inizializza un'istanza della InstanceOwnerQueryResult classe con un singolo risultato della query costituito dal GUID del proprietario dell'istanza e dai metadati associati al proprietario dell'istanza nell'archivio di istanze passato come parametri.

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

Parametri

instanceOwnerId
Guid

GUID associato al proprietario dell'istanza.

metadata
IDictionary<XName,InstanceValue>

Metadati associati al proprietario dell'istanza in un dizionario , che contiene i nomi delle proprietà e i relativi valori.

Si applica a