InterfaceQueuingAttribute 构造函数

定义

初始化 InterfaceQueuingAttribute 类的新实例,并启用队列支持。

重载

InterfaceQueuingAttribute()

初始化 InterfaceQueuingAttribute 类的新实例,并将 EnabledInterface 属性设置为其默认值。

InterfaceQueuingAttribute(Boolean)

初始化 InterfaceQueuingAttribute 类的新实例,并可以选择禁用队列支持。

InterfaceQueuingAttribute()

初始化 InterfaceQueuingAttribute 类的新实例,并将 EnabledInterface 属性设置为其默认值。

public:
 InterfaceQueuingAttribute();
public InterfaceQueuingAttribute ();
Public Sub New ()

示例

下面的代码示例创建新的 InterfaceQueuingAttribute

[InterfaceQueuing]
interface class IInterfaceQueuingAttribute_Ctor{};
[InterfaceQueuing]
public interface IInterfaceQueuingAttribute_Ctor
{
}
<InterfaceQueuing()>  _
Public Interface IInterfaceQueuingAttribute_Ctor
End Interface 'IInterfaceQueuingAttribute_Ctor

注解

下表显示了 实例 InterfaceQueuingAttribute的初始属性值。

属性
已启用 true
接口 null

适用于

InterfaceQueuingAttribute(Boolean)

初始化 InterfaceQueuingAttribute 类的新实例,并可以选择禁用队列支持。

public:
 InterfaceQueuingAttribute(bool enabled);
public InterfaceQueuingAttribute (bool enabled);
new System.EnterpriseServices.InterfaceQueuingAttribute : bool -> System.EnterpriseServices.InterfaceQueuingAttribute
Public Sub New (enabled As Boolean)

参数

enabled
Boolean

若要启用队列支持,则为 true;否则为 false

示例

下面的代码示例创建新的 InterfaceQueuingAttribute

[InterfaceQueuing(true)]
interface class IInterfaceQueuingAttribute_Ctor_Bool{};
[InterfaceQueuing(true)]
public interface IInterfaceQueuingAttribute_Ctor_Bool
{
}
<InterfaceQueuing(True)>  _
Public Interface IInterfaceQueuingAttribute_Ctor_Bool
End Interface 'IInterfaceQueuingAttribute_Ctor_Bool

适用于