Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

NetTcpBinding::PortSharingEnabled Property

 

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

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property bool PortSharingEnabled {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

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, seeTcpListener.

This example shows how to get the PortSharingEnabled value.

bool portSharingEnabled = binding.PortSharingEnabled;

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft