InterfaceQueuingAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
啟用佇列支援,來初始化 InterfaceQueuingAttribute 類別的新執行個體。
多載
InterfaceQueuingAttribute() |
初始化 InterfaceQueuingAttribute 類別的新執行個體,並將 Enabled 和 Interface 屬性設定為其預設值。 |
InterfaceQueuingAttribute(Boolean) |
選擇性停用佇列支援,來初始化 InterfaceQueuingAttribute 類別的新執行個體。 |
InterfaceQueuingAttribute()
初始化 InterfaceQueuingAttribute 類別的新執行個體,並將 Enabled 和 Interface 屬性設定為其預設值。
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