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