IDispatchImplAttribute 构造函数

定义

初始化 IDispatchImplAttribute 类的新实例。

重载

IDispatchImplAttribute(Int16)

使用指定的 IDispatchImplType 值初始化 IDispatchImplAttribute 类的新实例。

IDispatchImplAttribute(IDispatchImplType)

使用指定的 IDispatchImplType 值初始化 IDispatchImplAttribute 类的新实例。

IDispatchImplAttribute(Int16)

Source:
IDispatchImplAttribute.cs

使用指定的 IDispatchImplType 值初始化 IDispatchImplAttribute 类的新实例。

public:
 IDispatchImplAttribute(short implType);
public IDispatchImplAttribute (short implType);
new System.Runtime.InteropServices.IDispatchImplAttribute : int16 -> System.Runtime.InteropServices.IDispatchImplAttribute
Public Sub New (implType As Short)

参数

implType
Int16

指示将使用的 IDispatchImplType 枚举。

注解

此构造函数采用一个基础 16 位带符号整数,该整数表示每个 IDispatchImplType 枚举成员。 类型库导入程序 (TlbImp.exe) 使用此构造函数来避免为表示的值value生成 typerefIDispatchImplType,然后使用该令牌生成签名。

适用于

IDispatchImplAttribute(IDispatchImplType)

Source:
IDispatchImplAttribute.cs

使用指定的 IDispatchImplType 值初始化 IDispatchImplAttribute 类的新实例。

public:
 IDispatchImplAttribute(System::Runtime::InteropServices::IDispatchImplType implType);
public IDispatchImplAttribute (System.Runtime.InteropServices.IDispatchImplType implType);
new System.Runtime.InteropServices.IDispatchImplAttribute : System.Runtime.InteropServices.IDispatchImplType -> System.Runtime.InteropServices.IDispatchImplAttribute
Public Sub New (implType As IDispatchImplType)

参数

implType
IDispatchImplType

指示将使用的 IDispatchImplType 枚举。

注解

对于不太容易出错的可读代码,请始终使用此构造函数。

适用于