InterfaceQueuingAttribute Konstruktor
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menginisialisasi instans InterfaceQueuingAttribute baru kelas, memungkinkan dukungan antrean.
Overload
InterfaceQueuingAttribute() |
Menginisialisasi instans baru kelas yang InterfaceQueuingAttribute mengatur Enabled properti dan Interface ke nilai defaultnya. |
InterfaceQueuingAttribute(Boolean) |
Menginisialisasi instans InterfaceQueuingAttribute baru kelas, secara opsional menonaktifkan dukungan antrean. |
InterfaceQueuingAttribute()
Menginisialisasi instans baru kelas yang InterfaceQueuingAttribute mengatur Enabled properti dan Interface ke nilai defaultnya.
public:
InterfaceQueuingAttribute();
public InterfaceQueuingAttribute ();
Public Sub New ()
Contoh
Contoh kode berikut membuat baru InterfaceQueuingAttribute.
[InterfaceQueuing]
interface class IInterfaceQueuingAttribute_Ctor{};
[InterfaceQueuing]
public interface IInterfaceQueuingAttribute_Ctor
{
}
<InterfaceQueuing()> _
Public Interface IInterfaceQueuingAttribute_Ctor
End Interface 'IInterfaceQueuingAttribute_Ctor
Keterangan
Tabel berikut ini memperlihatkan nilai properti awal untuk instans InterfaceQueuingAttribute.
Properti | Nilai |
---|---|
Aktif | true |
Antarmuka | null |
Berlaku untuk
InterfaceQueuingAttribute(Boolean)
Menginisialisasi instans InterfaceQueuingAttribute baru kelas, secara opsional menonaktifkan dukungan antrean.
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
true
untuk mengaktifkan dukungan antrean; jika tidak, false
.
Contoh
Contoh kode berikut membuat baru 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