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 不支持泛型类型或方法。
类型参数
- TInterfaceType
一个从 IExtension 继承的 Type。
参数
- assemblyName
类型:System.String
一个包含程序集名称的 string。
- typeFullName
类型:System.String
一个包含完全限定类型名称的 string。
返回值
类型:Microsoft.Data.Schema.Extensibility.ExtensionHandle<TInterfaceType>
类型为 IExtension 的 ExtensionHandle<TInterfaceType>。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.Data.Schema.Extensibility 命名空间