CoClassAttribute 类

指定从类型库中导入的 coclass 的类标识符。

**命名空间:**System.Runtime.InteropServices
**程序集:**mscorlib(在 mscorlib.dll 中)

语法

声明
<ComVisibleAttribute(True)> _
<AttributeUsageAttribute(AttributeTargets.Interface, Inherited:=False)> _
Public NotInheritable Class CoClassAttribute
    Inherits Attribute
用法
Dim instance As CoClassAttribute
[ComVisibleAttribute(true)] 
[AttributeUsageAttribute(AttributeTargets.Interface, Inherited=false)] 
public sealed class CoClassAttribute : Attribute
[ComVisibleAttribute(true)] 
[AttributeUsageAttribute(AttributeTargets::Interface, Inherited=false)] 
public ref class CoClassAttribute sealed : public Attribute
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute AttributeUsageAttribute(AttributeTargets.Interface, Inherited=false) */ 
public final class CoClassAttribute extends Attribute
ComVisibleAttribute(true) 
AttributeUsageAttribute(AttributeTargets.Interface, Inherited=false) 
public final class CoClassAttribute extends Attribute

备注

可将此属性应用于 coclass 接口,不过通常 类型库导入程序 (Tlbimp.exe) 会在导入类型库时为您应用此属性。

当 Tlbimp.exe 导入 coclass 时,它将生成一个托管类和一个接口来表示该 coclass。coclass 接口与原始 coclass 的默认接口具有相同的接口标识符 (IID)。导入的 coclass 接口仍然保留 coclass 的名称。Tlbimp.exe 将“class”附加到原始 coclass 名称后,以标识导入的类。

很少应用此属性。但是,如果要使编写的源代码所生成的元数据尽量模拟由 Tlbimp.exe 生成的元数据,则应为每个 coclass 创建一个 coclass 接口。使用原始 coclass 的名称来命名 coclass 接口,并从默认接口派生该接口。除 CoClassAttribute 以外,还必须将 System.Runtime.InteropServices.ComImportAttributeSystem.Runtime.InteropServices.GuidAttribute 应用于 coclass 接口。有关 Tlbimp.exe 如何从类型库导入接口和 coclass 的其他信息,请参见 导入类型转换

继承层次结构

System.Object
   System.Attribute
    System.Runtime.InteropServices.CoClassAttribute

线程安全

此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0

请参见

参考

CoClassAttribute 成员
System.Runtime.InteropServices 命名空间
ComImportAttribute
GuidAttribute

其他资源

类型库导入程序 (Tlbimp.exe)