HttpServerChannel.WantsToListen Proprietà

Definizione

Ottiene un valore booleano che indica se è necessario eseguire l'hook dell'interfaccia IChannelReceiverHook al servizio di listener esterno.

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

Valore della proprietà

Boolean

Valore booleano che indica se è necessario eseguire l'hook dell'interfaccia IChannelReceiverHook al servizio di listener esterno.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà WantsToListen. Questo esempio di codice fa parte di un esempio più ampio fornito per la HttpServerChannel classe .

// See if the channel wants to listen.
bool wantsToListen = serverChannel->WantsToListen;
Console::WriteLine( L"The value of WantsToListen is {0}.", wantsToListen );
// See if the channel wants to listen.
bool wantsToListen = serverChannel.WantsToListen;
Console.WriteLine(
    "The value of WantsToListen is {0}.",
    wantsToListen);

Si applica a