ApplicationQueuingAttribute.QueueListenerEnabled プロパティ

定義

クライアントからのキュー コンポーネントの呼び出しをアプリケーションで受け入れるかどうかを示す値を取得または設定します。

public:
 property bool QueueListenerEnabled { bool get(); void set(bool value); };
public bool QueueListenerEnabled { get; set; }
member this.QueueListenerEnabled : bool with get, set
Public Property QueueListenerEnabled As Boolean

プロパティ値

キュー コンポーネントの呼び出しをアプリケーションが受け入れる場合は true。それ以外の場合は false。 既定値は、false です。

次のコード例では、属性QueueListenerEnabledの プロパティの値をApplicationQueuing取得および設定します。

// 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.
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)

適用対象