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 接口派生的接口。
参数
- type
类型:System.Type
一个实现 TInterfaceType 接口的 Type。
返回值
类型:System.Boolean
如果存在无注册配置的所传递类型的有效扩展,则为 true;否则为 false。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。