InstanceOwnerQueryResult 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化类的 InstanceOwnerQueryResult 实例。
重载
| 名称 | 说明 |
|---|---|
| InstanceOwnerQueryResult() |
使用空查询结果集初始化类的 InstanceOwnerQueryResult 实例。 |
| InstanceOwnerQueryResult(IDictionary<Guid,IDictionary<XName,InstanceValue>>) |
使用作为参数传递的字典初始化类的 InstanceOwnerQueryResult 实例,该字典包含与实例所有者关联的 GUID,以及包含与这些实例所有者关联的元数据的字典。 |
| InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>) |
InstanceOwnerQueryResult使用实例所有者的 GUID 和实例存储中作为参数传递的实例所有者关联的元数据,使用单个查询结果初始化类的实例实例。 |
InstanceOwnerQueryResult()
使用空查询结果集初始化类的 InstanceOwnerQueryResult 实例。
public:
InstanceOwnerQueryResult();
public InstanceOwnerQueryResult();
Public Sub New ()
适用于
InstanceOwnerQueryResult(IDictionary<Guid,IDictionary<XName,InstanceValue>>)
使用作为参数传递的字典初始化类的 InstanceOwnerQueryResult 实例,该字典包含与实例所有者关联的 GUID,以及包含与这些实例所有者关联的元数据的字典。
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)))
参数
- instanceOwners
- IDictionary<Guid,IDictionary<XName,InstanceValue>>
包含表示查询结果集的实例所有者的 GUID 和元数据的字典。 元数据本身包含在包含元数据属性名称和值的其他字典中。
适用于
InstanceOwnerQueryResult(Guid, IDictionary<XName,InstanceValue>)
InstanceOwnerQueryResult使用实例所有者的 GUID 和实例存储中作为参数传递的实例所有者关联的元数据,使用单个查询结果初始化类的实例实例。
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))
参数
- instanceOwnerId
- Guid
与实例所有者关联的 GUID。
- metadata
- IDictionary<XName,InstanceValue>
与字典中的实例所有者关联的元数据(其中包含属性的名称及其值)。