Freigeben über


ApplicationQueuingAttribute.QueueListenerEnabled-Eigenschaft

Ruft einen Wert ab, der angibt, ob die Anwendung in der Warteschlange gespeicherte Komponentenaufrufe durch Clients akzeptiert, oder legt diesen fest.

Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)

Syntax

'Declaration
Public Property QueueListenerEnabled As Boolean
'Usage
Dim instance As ApplicationQueuingAttribute
Dim value As Boolean

value = instance.QueueListenerEnabled

instance.QueueListenerEnabled = value
public bool QueueListenerEnabled { get; set; }
public:
property bool QueueListenerEnabled {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_QueueListenerEnabled ()

/** @property */
public void set_QueueListenerEnabled (boolean value)
public function get QueueListenerEnabled () : boolean

public function set QueueListenerEnabled (value : boolean)

Eigenschaftenwert

true, wenn die Anwendung in der Warteschlange gespeicherte Komponentenaufrufe akzeptiert, andernfalls false. Der Standardwert ist false.

Beispiel

Im folgenden Codebeispiel wird der Wert der QueueListenerEnabled-Eigenschaft eines ApplicationQueuing-Attributs abgerufen und festgelegt.

' This example code requires that an ApplicationQueuing attribute be
' applied to the assembly, as shown below:
' [assembly: ApplicationQueuing]
' Get the ApplicationQueuingAttribute applied to the assembly.
Dim attribute As ApplicationQueuingAttribute = CType(attribute.GetCustomAttribute(System.Reflection.Assembly.GetExecutingAssembly(), GetType(ApplicationQueuingAttribute), False), ApplicationQueuingAttribute)

' Display the current value of the attribute's QueueListenerEnabled
' property.
MsgBox("ApplicationQueuingAttribute.QueueListenerEnabled: " & attribute.Enabled)

' Set the QueueListenerEnabled property value of the attribute.
attribute.QueueListenerEnabled = False

' Display the new value of the attribute's QueueListenerEnabled
' property.
MsgBox("ApplicationQueuingAttribute.QueueListenerEnabled: " & attribute.QueueListenerEnabled)
// This example code requires that an ApplicationQueuing attribute be
// applied to the assembly, as shown below:
// [assembly: ApplicationQueuing]

// Get the ApplicationQueuingAttribute applied to the assembly.
ApplicationQueuingAttribute attribute =
    (ApplicationQueuingAttribute)Attribute.GetCustomAttribute(
    System.Reflection.Assembly.GetExecutingAssembly(),
    typeof(ApplicationQueuingAttribute),
    false);

// Display the current value of the attribute's QueueListenerEnabled
// property.
Console.WriteLine(
    "ApplicationQueuingAttribute.QueueListenerEnabled: {0}",
    attribute.Enabled);

// Set the QueueListenerEnabled property value of the attribute.
attribute.QueueListenerEnabled = false;

// Display the new value of the attribute's QueueListenerEnabled
// property.
Console.WriteLine(
    "ApplicationQueuingAttribute.QueueListenerEnabled: {0}",
    attribute.QueueListenerEnabled);
// This example code requires that an ApplicationQueuing attribute be
// applied to the assembly, as shown below:
// /** @assembly ApplicationQueuing 
//  */
// Get the ApplicationQueuingAttribute applied to the assembly.
ApplicationQueuingAttribute attribute = (ApplicationQueuingAttribute)(
    Attribute.GetCustomAttribute(System.Reflection.Assembly.
    GetExecutingAssembly(), ApplicationQueuingAttribute.class.ToType(),
    false));
// Display the current value of the attribute's QueueListenerEnabled
// property.
Console.WriteLine(
    "ApplicationQueuingAttribute.QueueListenerEnabled: {0}",
    System.Convert.ToString(attribute.get_Enabled()));

// Set the QueueListenerEnabled property value of the attribute.
attribute.set_QueueListenerEnabled(false);

// Display the new value of the attribute's QueueListenerEnabled
// property.
Console.WriteLine(
    "ApplicationQueuingAttribute.QueueListenerEnabled: {0}",
    System.Convert.ToString(attribute.get_QueueListenerEnabled()));

.NET Framework-Sicherheit

  • Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter .

Plattformen

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

ApplicationQueuingAttribute-Klasse
ApplicationQueuingAttribute-Member
System.EnterpriseServices-Namespace