HttpServerChannel.WantsToListen Property

Definition

Gets a Boolean value that indicates whether IChannelReceiverHook wants to be hooked into the outside listener service.

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

Property Value

A Boolean value that indicates whether IChannelReceiverHook wants to be hooked into the outside listener service.

Examples

The following code example shows how to use the WantsToListen property. This code example is part of a larger example provided for the HttpServerChannel class.

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

Applies to