ExtensionManager.IsExtension<TInterfaceType> 方法 (Type)

检查当前实例中是否存在与提供的类型匹配且无配置的有效扩展。

命名空间:  Microsoft.Data.Schema.Extensibility
程序集:  Microsoft.Data.Schema(在 Microsoft.Data.Schema.dll 中)

语法

声明
Public Function IsExtension(Of TInterfaceType As {Class, IExtension}) ( _
    type As Type _
) As Boolean
public bool IsExtension<TInterfaceType>(
    Type type
)
where TInterfaceType : class, IExtension
public:
generic<typename TInterfaceType>
where TInterfaceType : ref class, IExtension
bool IsExtension(
    Type^ type
)
member IsExtension : 
        type:Type -> bool  when 'TInterfaceType : not struct and IExtension
JScript 不支持泛型类型或方法。

类型参数

  • TInterfaceType
    一个从 IExtension 接口派生的接口。

参数

返回值

类型:System.Boolean
如果存在无注册配置的所传递类型的有效扩展,则为 true;否则为 false。

.NET Framework 安全性

请参见

参考

ExtensionManager 类

IsExtension 重载

Microsoft.Data.Schema.Extensibility 命名空间

IExtension