1 write to socket
System.ServiceModel (1)
System\ServiceModel\Channels\SocketConnection.cs (1)
1877this.socket = new Socket(addressFamily, SocketType.Stream, ProtocolType.Tcp);
7 references to socket
System.ServiceModel (7)
System\ServiceModel\Channels\SocketConnection.cs (7)
1878IAsyncResult result = socket.BeginConnect(ipEndPoint, onConnect, this); 1884socket.EndConnect(result); 1896if (socket == null) 1910SocketConnectionInitiator.TraceConnectFailure(this.socket, exception, uri, DateTime.UtcNow - connectStartTime); 1911this.socket.Close(); 1926thisPtr.socket.EndConnect(result); 1959return thisPtr.socket;