3 implementations of EndRead
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
109public virtual int EndRead() 694public int EndRead()
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
378public int EndRead()
5 references to EndRead
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (4)
111return _connection.EndRead(); 386tcs.TrySetResult(_connection.EndRead()); 413tcs.TrySetResult(thisPtr._connection.EndRead()); 841int ackBytesRead = connection.EndRead();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
155bytesRead = _connection.EndRead();