2 writes to PortSharingEnabled
System.ServiceModel (2)
System\ServiceModel\Configuration\TcpTransportElement.cs (1)
29binding.PortSharingEnabled = this.PortSharingEnabled;
System\ServiceModel\NetTcpBinding.cs (1)
131set { transport.PortSharingEnabled = value; }
6 references to PortSharingEnabled
System.ServiceModel (6)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
173instance.SetProperty(AdministrationStrings.PortSharingEnabled, tcp.PortSharingEnabled);
System\ServiceModel\Channels\TcpChannelListener.cs (2)
194this.portSharingEnabled = bindingElement.PortSharingEnabled; 201if (!bindingElement.PortSharingEnabled && context.ListenUriMode == ListenUriMode.Unique)
System\ServiceModel\Configuration\TcpTransportElement.cs (1)
69SetPropertyValueIfNotDefaultValue(ConfigurationStrings.PortSharingEnabled, binding.PortSharingEnabled);
System\ServiceModel\NetTcpBinding.cs (2)
130get { return transport.PortSharingEnabled; } 218this.PortSharingEnabled = transport.PortSharingEnabled;