HttpServerChannel.WantsToListen 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个布尔值,该值指示是否需要将 IChannelReceiverHook 挂接到外部侦听器服务。
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
属性值
一个布尔值,该值指示是否需要将 IChannelReceiverHook 挂接到外部侦听器服务。
示例
下面的代码示例说明如何使用 WantsToListen 属性。 此代码示例是为类提供的大型示例的 HttpServerChannel 一部分。
// 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);