4 implementations of Read
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
151public virtual int Read(byte[] buffer, int offset, int size, TimeSpan timeout) 805public int Read(byte[] buffer, int offset, int size, TimeSpan timeout)
System\ServiceModel\Channels\PipeConnection.cs (1)
988unsafe public int Read(byte[] buffer, int offset, int size, TimeSpan timeout)
System\ServiceModel\Channels\SocketConnection.cs (1)
1089public int Read(byte[] buffer, int offset, int size, TimeSpan timeout)
2 references to Read
System.ServiceModel (2)
System\ServiceModel\Channels\Connection.cs (2)
153return connection.Read(buffer, offset, size, timeout); 412return connection.Read(buffer, offset, count, timeout);