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