Compartilhar via


HttpServerChannel.WantsToListen Propriedade

Definição

Obtém um valor booliano que indica se IChannelReceiverHook quiser ser conectado o serviço ouvinte externo.

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

Valor da propriedade

Boolean

Um valor booliano que indica se IChannelReceiverHook deseja ser conectado ao serviço de ouvinte externo.

Exemplos

O exemplo de código a seguir mostra como usar a WantsToListen propriedade. Este exemplo de código faz parte de um exemplo maior fornecido para a 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);

Aplica-se a