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.

TcpTransportBindingElement::PortSharingEnabled Property

 

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

Namespace:   System.ServiceModel.Channels
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 WCF TCP Port Sharing Service by changing its Startup Type to Manual or Automatic.

For information about the TCP Listener and how to start it, see Net.TCP Port Sharing.

The following example shows how to get a value that indicates whether TCP port sharing is enabled.

bool portSharingEnabled = bElement.PortSharingEnabled;

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