HttpServerChannel.WantsToListen Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene un valor booleano que indica si IChannelReceiverHook desea enlazarse al servicio del agente de escucha 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 de propiedad
Valor booleano que indica si IChannelReceiverHook desea enlazarse al servicio del agente de escucha externo.
Ejemplos
En el ejemplo de código siguiente se muestra cómo utilizar la propiedad WantsToListen. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la HttpServerChannel clase .
// 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);