IContext 接口

定义

检索为其他对象提供自定义支持的服务对象。

public interface class IContext : IEquatable<Microsoft::SqlServer::Management::Data::IContext ^>, IServiceProvider, Microsoft::SqlServer::Management::Data::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 IContext : IEquatable<Microsoft.SqlServer.Management.Data.IContext>, IServiceProvider, Microsoft.SqlServer.Management.Data.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 IContext = interface
    interface IPropertyDictionary
    interface ISfcPropertySet
    interface IDictionary<string, obj>
    interface ICollection<KeyValuePair<string, obj>>
    interface seq<KeyValuePair<string, obj>>
    interface IEnumerable
    interface IServiceProvider
    interface IEquatable<IContext>
Public Interface IContext
Implements ICollection(Of KeyValuePair(Of String, Object)), IDictionary(Of String, Object), IEnumerable(Of KeyValuePair(Of String, Object)), IEquatable(Of IContext), IPropertyDictionary, IServiceProvider, ISfcPropertySet
派生
实现

方法

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

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

(继承自 IPropertyDictionary)
Add(ISfcProperty)

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

(继承自 IPropertyDictionary)
Add(ISfcProperty, PropertyCollisionResolution)

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

(继承自 IPropertyDictionary)
Add(KeyValuePair<String,Object>, PropertyCollisionResolution)

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

(继承自 IPropertyDictionary)
Add(String, Object, PropertyCollisionResolution)

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

(继承自 IPropertyDictionary)
Add(String, Type)

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

(继承自 IPropertyDictionary)
Add(String, Type, PropertyCollisionResolution)

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

(继承自 IPropertyDictionary)
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)

适用于