TcpTransportElement.PortSharingEnabled 属性

定义

获取或设置一个值,该值指定是否为此连接启用 TCP 端口共享。

public:
 property bool PortSharingEnabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("portSharingEnabled", DefaultValue=false)]
public bool PortSharingEnabled { get; set; }
[<System.Configuration.ConfigurationProperty("portSharingEnabled", DefaultValue=false)>]
member this.PortSharingEnabled : bool with get, set
Public Property PortSharingEnabled As Boolean

属性值

如果启用了 TCP 端口共享,则为 true;如果每个绑定都使用自己的独占端口,则为 false。 默认值是 false

属性

注解

此设置只与服务相关。 客户端并不会受影响。

使用此设置需要启用 Windows Communication Foundation (WCF) TCP 端口共享服务,方法是将其启动类型更改为“手动”或“自动”。

有关 TCP 侦听器以及如何启动它的详细信息,请参阅 TcpListener

适用于