1 write to transport
System.ServiceModel (1)
System\ServiceModel\NetPeerTcpBinding.cs (1)
112transport = new PeerTransportBindingElement();
14 references to transport
System.ServiceModel (14)
System\ServiceModel\NetPeerTcpBinding.cs (14)
40get { return transport.MaxBufferPoolSize; } 43transport.MaxBufferPoolSize = value; 50get { return transport.MaxReceivedMessageSize; } 51set { transport.MaxReceivedMessageSize = value; } 58get { return transport.ListenIPAddress; } 59set { transport.ListenIPAddress = value; } 76get { return transport.Port; } 77set { transport.Port = value; } 101public override string Scheme { get { return transport.Scheme; } } 135if (!this.transport.IsMatch(transport)) 158this.transport.CreateDefaultResolver(this.Resolver); 197bindingElements.Add(transport); 198transport.Security.Mode = this.Security.Mode; 199transport.Security.Transport.CredentialType = this.Security.Transport.CredentialType;