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>>
类型为 ExtensionHandleReadOnlyCollection<T>,它包含已成功加载的扩展的句柄。

备注

返回的扩展名只包括设置为与 ExtensionManager 中使用匹配类型指定的提供程序兼容的扩展名。

.NET Framework 安全性

请参见

参考

ExtensionManager 类

Microsoft.Data.Schema.Extensibility 命名空间

GetExtension

ExtensionHandle

IExtension