3 instantiations of SocketConnection
System.ServiceModel (3)
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
761
SocketConnection socketConnection = new
SocketConnection
(socket, EnsureConnectionBufferPool(connectionBufferSize, alreadyHoldingLock), true);
System\ServiceModel\Channels\SocketConnection.cs (2)
1578
return new
SocketConnection
(socket, this.connectionBufferPool, false);
2058
return new
SocketConnection
(socket, this.connectionBufferPool, false);
14 references to SocketConnection
System.ServiceModel (14)
System\ServiceModel\Channels\HttpChannelHelpers.cs (2)
3629
return
SocketConnection
.ConvertTransferException((SocketException)ioException.InnerException, receiveTimeout, ioException);
3675
return
SocketConnection
.ConvertTransferException((SocketException)ioException.InnerException, TimeSpan.FromMilliseconds(request.Timeout), exception);
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
761
SocketConnection
socketConnection = new SocketConnection(socket, EnsureConnectionBufferPool(connectionBufferSize, alreadyHoldingLock), true);
System\ServiceModel\Channels\SocketConnection.cs (11)
251
SocketConnection
thisPtr = (
SocketConnection
)state;
257
SocketConnection
thisPtr = (
SocketConnection
)state;
264
((
SocketConnection
)result.AsyncState).OnReceive(result);
269
((
SocketConnection
)e.UserToken).OnReceiveAsync(sender, e);
274
((
SocketConnection
)e.UserToken).OnSendAsync(sender, e);
423
SocketConnection
thisPtr = (
SocketConnection
)state;
717
SocketConnection
socketConnection, TimeSpan remainingTime)
822
static string GetEndpointString(string sr, TimeSpan timeout, SocketException socketException,
SocketConnection
socketConnection)