3 implementations of BeginRead
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
103
public virtual AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout,
667
public AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout, Action<object> callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
342
public virtual AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout,
4 references to BeginRead
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (3)
106
return _connection.
BeginRead
(offset, size, timeout, callback, state);
381
AsyncCompletionResult asyncCompletionResult = _connection.
BeginRead
(0, Math.Min(count, _connection.AsyncReadBufferSize),
834
var result = connection.
BeginRead
(offset, size, timeout, OnIoComplete, tcs);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
148
var result = _connection.
BeginRead
(0, _buffer.Length, timeoutHelper.RemainingTime(), TaskHelpers.OnAsyncCompletionCallback, tcs);