ExtensionManager.GetExtensions<TInterfaceType> 方法
为提供的扩展接口类型返回已成功加载的扩展类型的列表。
命名空间: Microsoft.Data.Schema.Extensibility
程序集: Microsoft.Data.Schema(在 Microsoft.Data.Schema.dll 中)
语法
声明
Public Function GetExtensions(Of TInterfaceType As {Class, IExtension}) As ReadOnlyCollection(Of ExtensionHandle(Of TInterfaceType))
public ReadOnlyCollection<ExtensionHandle<TInterfaceType>> GetExtensions<TInterfaceType>()
where TInterfaceType : class, IExtension
public:
generic<typename TInterfaceType>
where TInterfaceType : ref class, IExtension
ReadOnlyCollection<ExtensionHandle<TInterfaceType>^>^ GetExtensions()
member GetExtensions : unit -> ReadOnlyCollection<ExtensionHandle<'TInterfaceType>> when 'TInterfaceType : not struct and IExtension
JScript 不支持泛型类型或方法。
类型参数
- TInterfaceType
一个从 IExtension 接口继承的接口。
返回值
类型:System.Collections.ObjectModel.ReadOnlyCollection<ExtensionHandle<TInterfaceType>>
类型为 ExtensionHandle 的 ReadOnlyCollection<T>,它包含已成功加载的扩展的句柄。
备注
返回的扩展名只包括设置为与 ExtensionManager 中使用匹配类型指定的提供程序兼容的扩展名。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。