InstanceOwnerQueryResult Constructors

Definition

Initializes an instance of the InstanceOwnerQueryResult class.

Overloads

InstanceOwnerQueryResult()

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

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

Initializes an instance of the InstanceOwnerQueryResult class using the dictionary passed as a parameter that contains GUIDs associated with instance owners and dictionaries that contain metadata associated with these instance owners.

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Initializes an instance of the InstanceOwnerQueryResult class with a single query result consisting of the GUID of the instance owner and the metadata associated with that instance owner in the instance store passed as parameters.

InstanceOwnerQueryResult()

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

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

Applies to

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

Initializes an instance of the InstanceOwnerQueryResult class using the dictionary passed as a parameter that contains GUIDs associated with instance owners and dictionaries that contain metadata associated with these instance owners.

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

Parameters

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

A dictionary that contains GUIDs and metadata of instance owners representing the query result set. Metadata itself is contained in additional dictionaries that contain names and values of metadata properties.

Applies to

InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)

Initializes an instance of the InstanceOwnerQueryResult class with a single query result consisting of the GUID of the instance owner and the metadata associated with that instance owner in the instance store passed as parameters.

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

Parameters

instanceOwnerId
Guid

GUID associated with the instance owner.

metadata
IDictionary<XName,InstanceValue>

Metadata associated with the instance owner in a dictionary, (which contains the names of properties and their values).

Applies to