TcpTransportElement.PortSharingEnabled Property

Definition

Gets or sets a value that specifies whether TCP port sharing is enabled for this connection.

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

Property Value

true if TCP port sharing is enabled; false if each binding uses its own exclusive port. The default value is false.

Attributes

Remarks

This setting is relevant only to services. Clients are not affected.

Using this setting requires enabling the Windows Communication Foundation (WCF) TCP Port Sharing Service by changing its Startup Type to Manual or Automatic.

For more information about the TCP Listener and how to start it, see TcpListener.

Applies to