4 implementations of BeginRead
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
156
public virtual AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout,
818
public AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout, WaitCallback callback, object state)
System\ServiceModel\Channels\PipeConnection.cs (1)
231
public unsafe AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout,
System\ServiceModel\Channels\SocketConnection.cs (1)
1143
public virtual AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout,
5 references to BeginRead
System.ServiceModel (5)
System\ServiceModel\Channels\Connection.cs (2)
159
return connection.
BeginRead
(offset, size, timeout, callback, state);
500
AsyncCompletionResult readResult = connection.
BeginRead
(0, Math.Min(count, connection.AsyncReadBufferSize),
System\ServiceModel\Channels\ConnectionModeReader.cs (1)
73
if (Connection.
BeginRead
(0, Connection.AsyncReadBufferSize, GetRemainingTimeout(),
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
158
if (Connection.
BeginRead
(0, connectionBuffer.Length, GetRemainingTimeout(), readCallback, this)
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
129
if (Connection.
BeginRead
(0, connectionBuffer.Length, GetRemainingTimeout(),