HttpServerChannel.WantsToListen 属性

定义

获取一个布尔值,该值指示是否需要将 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

属性值

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

适用于