HttpServerChannel.WantsToListen Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);