NetTcpBinding.PortSharingEnabled Property

Definition

Gets or sets a value that indicates whether TCP port sharing is enabled for the connection configured with this binding.

public:
 property bool PortSharingEnabled { bool get(); void set(bool value); };
public bool PortSharingEnabled { get; set; }
member this.PortSharingEnabled : bool with get, set
Public Property PortSharingEnabled As Boolean

Property Value

true if TCP port sharing is enabled; otherwise, false. The default value is false.

Examples

This example shows how to get the PortSharingEnabled value.

bool portSharingEnabled = binding.PortSharingEnabled;

Remarks

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