3 implementations of Read
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
98public virtual int Read(byte[] buffer, int offset, int size, TimeSpan timeout) 654public int Read(byte[] buffer, int offset, int size, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
327public int Read(byte[] buffer, int offset, int size, TimeSpan timeout)
8 references to Read
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
100return _connection.Read(buffer, offset, size, timeout); 428return _connection.Read(buffer, offset, count, timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (4)
305int ackBytesRead = connection.Read(ackBuffer, 0, ackBuffer.Length, timeoutHelper.RemainingTime()); 495int size = connection.Read(faultBuffer, offset, faultBuffer.Length, timeoutHelper.RemainingTime()); 518size = connection.Read(faultBuffer, offset, faultBuffer.Length, timeoutHelper.RemainingTime()); 539int size = connection.Read(buffer, 0, buffer.Length, timeoutHelper.RemainingTime());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (2)
207bytesRead = _connection.Read(EnvelopeBuffer, EnvelopeOffset, _buffer.Length, timeoutHelper.RemainingTime()); 212bytesRead = _connection.Read(_buffer, 0, _buffer.Length, timeoutHelper.RemainingTime());