InterfaceQueuingAttribute Constructors
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Initialiseert een nieuw exemplaar van de InterfaceQueuingAttribute klasse, waardoor wachtrijondersteuning wordt ingeschakeld.
Overloads
| Name | Description |
|---|---|
| InterfaceQueuingAttribute() |
Initialiseert een nieuw exemplaar van de InterfaceQueuingAttribute klasse waarbij de Enabled en Interface eigenschappen worden ingesteld op de standaardwaarden. |
| InterfaceQueuingAttribute(Boolean) |
Initialiseert een nieuw exemplaar van de InterfaceQueuingAttribute klasse, optioneel het uitschakelen van ondersteuning voor wachtrijen. |
InterfaceQueuingAttribute()
Initialiseert een nieuw exemplaar van de InterfaceQueuingAttribute klasse waarbij de Enabled en Interface eigenschappen worden ingesteld op de standaardwaarden.
public:
InterfaceQueuingAttribute();
public InterfaceQueuingAttribute();
Public Sub New ()
Voorbeelden
In het volgende codevoorbeeld wordt een nieuwe InterfaceQueuingAttributegemaakt.
[InterfaceQueuing]
interface class IInterfaceQueuingAttribute_Ctor{};
[InterfaceQueuing]
public interface IInterfaceQueuingAttribute_Ctor
{
}
<InterfaceQueuing()> _
Public Interface IInterfaceQueuingAttribute_Ctor
End Interface 'IInterfaceQueuingAttribute_Ctor
Opmerkingen
In de volgende tabel ziet u de oorspronkelijke eigenschapswaarden voor een exemplaar van InterfaceQueuingAttribute.
| Vastgoed | Waarde |
|---|---|
| Ingeschakeld | true |
| Interface | null |
Van toepassing op
InterfaceQueuingAttribute(Boolean)
Initialiseert een nieuw exemplaar van de InterfaceQueuingAttribute klasse, optioneel het uitschakelen van ondersteuning voor wachtrijen.
public:
InterfaceQueuingAttribute(bool enabled);
public InterfaceQueuingAttribute(bool enabled);
new System.EnterpriseServices.InterfaceQueuingAttribute : bool -> System.EnterpriseServices.InterfaceQueuingAttribute
Public Sub New (enabled As Boolean)
Parameters
- enabled
- Boolean
true om wachtrijondersteuning in te schakelen; anders, false.
Voorbeelden
In het volgende codevoorbeeld wordt een nieuwe InterfaceQueuingAttributegemaakt.
[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