InterfaceQueuingAttribute Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der Klasse, wodurch die InterfaceQueuingAttribute Queuing-Unterstützung aktiviert wird.
Überlädt
| Name | Beschreibung |
|---|---|
| InterfaceQueuingAttribute() |
Initialisiert eine neue Instanz der Klasse, die InterfaceQueuingAttribute die Enabled Standardwerte und Interface Eigenschaften festlegt. |
| InterfaceQueuingAttribute(Boolean) |
Initialisiert eine neue Instanz der InterfaceQueuingAttribute Klasse, optional wird die Queuing-Unterstützung deaktiviert. |
InterfaceQueuingAttribute()
Initialisiert eine neue Instanz der Klasse, die InterfaceQueuingAttribute die Enabled Standardwerte und Interface Eigenschaften festlegt.
public:
InterfaceQueuingAttribute();
public InterfaceQueuingAttribute();
Public Sub New ()
Beispiele
Im folgenden Codebeispiel wird ein neues InterfaceQueuingAttribute.
[InterfaceQueuing]
interface class IInterfaceQueuingAttribute_Ctor{};
[InterfaceQueuing]
public interface IInterfaceQueuingAttribute_Ctor
{
}
<InterfaceQueuing()> _
Public Interface IInterfaceQueuingAttribute_Ctor
End Interface 'IInterfaceQueuingAttribute_Ctor
Hinweise
In der folgenden Tabelle sind die anfänglichen Eigenschaftswerte für eine Instanz von InterfaceQueuingAttributeaufgeführt.
| Eigentum | Wert |
|---|---|
| Aktiviert | true |
| Interface | null |
Gilt für:
InterfaceQueuingAttribute(Boolean)
Initialisiert eine neue Instanz der InterfaceQueuingAttribute Klasse, optional wird die Queuing-Unterstützung deaktiviert.
public:
InterfaceQueuingAttribute(bool enabled);
public InterfaceQueuingAttribute(bool enabled);
new System.EnterpriseServices.InterfaceQueuingAttribute : bool -> System.EnterpriseServices.InterfaceQueuingAttribute
Public Sub New (enabled As Boolean)
Parameter
- enabled
- Boolean
trueUnterstützung von Warteschlangen zu ermöglichen; andernfalls . false
Beispiele
Im folgenden Codebeispiel wird ein neues 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