IPropertyDictionary 接口

定义

获取 PropertyDictionary 中包含的元素列表。

public interface class IPropertyDictionary : Microsoft::SqlServer::Management::Sdk::Sfc::ISfcPropertySet, System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>>, System::Collections::Generic::IDictionary<System::String ^, System::Object ^>, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>>
public interface IPropertyDictionary : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcPropertySet, System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string,object>>, System.Collections.Generic.IDictionary<string,object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>>
type IPropertyDictionary = interface
    interface ISfcPropertySet
    interface IDictionary<string, obj>
    interface ICollection<KeyValuePair<string, obj>>
    interface seq<KeyValuePair<string, obj>>
    interface IEnumerable
Public Interface IPropertyDictionary
Implements ICollection(Of KeyValuePair(Of String, Object)), IDictionary(Of String, Object), IEnumerable(Of KeyValuePair(Of String, Object)), ISfcPropertySet
派生
实现

方法

Add(IEnumerable<KeyValuePair<String,Object>>, PropertyCollisionResolution)

使用指定的属性解决方法将该属性添加到字典中。

Add(ISfcProperty)

将指定属性添加到字典中。

Add(ISfcProperty, PropertyCollisionResolution)

使用指定的接口解决方法将属性添加到字典中。

Add(KeyValuePair<String,Object>, PropertyCollisionResolution)

将指定的键和值添加到字典中。

Add(String, Object, PropertyCollisionResolution)

使用为属性指定的键、值和解决方法将该属性添加到字典中。

Add(String, Type)

使用指定的名称和类型将属性添加到字典中。

Add(String, Type, PropertyCollisionResolution)

使用指定的名称、类型和接口解决方法将属性添加到字典中。

Contains(ISfcProperty)

检查具有指定元数据的属性是否在属性集中。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)
Contains(String)

检查具有指定名称的属性是否在属性集中。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)
Contains<T>(String)

检查具有指定名称和类型的属性是否位于属性集不要直接在代码中引用此成员。 它支持SQL Server基础结构。

(继承自 ISfcPropertySet)
EnumProperties()

返回可遍历属性集中的属性的枚举器。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)
TryGetProperty(String, ISfcProperty)

尝试获取属性元数据。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)
TryGetPropertyValue(String, Object)

尝试获取属性值。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)
TryGetPropertyValue<T>(String, T)

尝试获取属性值。 不要在您的代码中直接引用此成员。 它支持 SQL Server 基础结构。

(继承自 ISfcPropertySet)

适用于