ExtensionManager.GetExtension<TInterfaceType> 方法 (String, String)

使用提供的程序集名称和类型名称在当前 ExtensionManager 的已加载扩展中查找某一扩展。

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

语法

声明
Public Function GetExtension(Of TInterfaceType As {Class, IExtension}) ( _
    assemblyName As String, _
    typeFullName As String _
) As ExtensionHandle(Of TInterfaceType)
public ExtensionHandle<TInterfaceType> GetExtension<TInterfaceType>(
    string assemblyName,
    string typeFullName
)
where TInterfaceType : class, IExtension
public:
generic<typename TInterfaceType>
where TInterfaceType : ref class, IExtension
ExtensionHandle<TInterfaceType>^ GetExtension(
    String^ assemblyName, 
    String^ typeFullName
)
member GetExtension : 
        assemblyName:string * 
        typeFullName:string -> ExtensionHandle<'TInterfaceType>  when 'TInterfaceType : not struct and IExtension
JScript 不支持泛型类型或方法。

类型参数

参数

  • assemblyName
    类型:System.String
    一个包含程序集名称的 string。
  • typeFullName
    类型:System.String
    一个包含完全限定类型名称的 string。

返回值

类型:Microsoft.Data.Schema.Extensibility.ExtensionHandle<TInterfaceType>
类型为 IExtensionExtensionHandle<TInterfaceType>

.NET Framework 安全性

请参见

参考

ExtensionManager 类

GetExtension 重载

Microsoft.Data.Schema.Extensibility 命名空间

GetExtension

ExtensionHandle<TInterfaceType>

IExtension