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