46 overrides of BeginRead
mscorlib (4)
PresentationFramework (2)
System (22)
net\System\Net\Cache\_CacheStreams.cs (4)
214public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
667public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
954public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
1170public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
System.Core (1)
System.Data (2)
System.Data.Services (1)
System.Data.Services.Client (1)
System.Runtime.Remoting (2)
System.Runtime.Serialization (1)
System.ServiceModel (3)
System.ServiceModel.Internals (1)
System.ServiceModel.Web (1)
System.Web (2)
System.Web.Services (2)
System.Xml (1)
66 references to BeginRead
mscorlib (5)
system\io\stream.cs (2)
430(stream, args, callback, state) => stream.BeginRead(args.Buffer, args.Offset, args.Count, callback, state), // cached by compiler
1243_stream.BeginRead(buffer, offset, count, callback, state) :
PresentationCore (3)
PresentationFramework (2)
System (29)
net\System\Net\Cache\_CacheStreams.cs (9)
195IAsyncResult ar = WrappedStream.BeginRead(userResult.Buffer, userResult.Offset, userResult.Count, m_ReadCallback, userResult);
225return WrappedStream.BeginRead(buffer, offset, count, callback, state);
229IAsyncResult ar = m_HeadStream.BeginRead(buffer, offset, count, m_ReadCallback, userResult);
244return WrappedStream.BeginRead(buffer, offset, count, callback, state);
621transportResult = WrappedStream.BeginRead(userResult.Buffer, userResult.Offset, userResult.Count, m_ReadCallback, userResult);
679return WrappedStream.BeginRead(buffer, offset, count, callback, state);
688IAsyncResult result = WrappedStream.BeginRead(userResult.Buffer, userResult.Offset, userResult.Count, m_ReadCallback, userResult);
955return WrappedStream.BeginRead(buffer, offset, count, callback, state);
1177return WrappedStream.BeginRead(buffer, offset, count, callback, state);
net\System\Net\webclient.cs (3)
1131ReadStream.BeginRead(InnerBuffer, Offset, (int)Length-Offset, new AsyncCallback(DownloadBitsReadCallback), this);
1155ReadStream.BeginRead(InnerBuffer, Offset, (int)Length-Offset, new AsyncCallback(DownloadBitsReadCallback), this);
3051return m_stream.BeginRead(buffer, offset, size, callback, state);
System.Core (1)
System.Data.Services.Client (6)
System\Data\Services\Client\DataServiceContext.cs (5)
5754asyncResult = BaseAsyncResult.InvokeAsync(contentStream.Stream.BeginRead, pereq.RequestContentBuffer, 0, pereq.RequestContentBuffer.Length, this.AsyncRequestContentEndRead, pereq);
5814asyncResult = BaseAsyncResult.InvokeAsync(contentStream.Stream.BeginRead, pereq.RequestContentBuffer, 0, pereq.RequestContentBuffer.Length, this.AsyncRequestContentEndRead, pereq);
5882asyncResult = BaseAsyncResult.InvokeAsync(contentStream.Stream.BeginRead, pereq.RequestContentBuffer, 0, pereq.RequestContentBuffer.Length, this.AsyncRequestContentEndRead, pereq);
5956asyncResult = BaseAsyncResult.InvokeAsync(stream.BeginRead, this.buildBatchBuffer, 0, this.buildBatchBuffer.Length, this.AsyncEndRead, pereq);
6014asyncResult = BaseAsyncResult.InvokeAsync(stream.BeginRead, this.buildBatchBuffer, 0, this.buildBatchBuffer.Length, this.AsyncEndRead, pereq);
System.Runtime.Remoting (2)
System.Runtime.Serialization (3)
System.ServiceModel (5)
System\ServiceModel\Channels\HttpChannelHelpers.cs (3)
713IAsyncResult result = inputStream.BeginRead(buffer.Array, offset, count, onRead, this);
743IAsyncResult result = inputStream.BeginRead(buffer.Array, offset, count, onRead, this);
978return BaseStream.BeginRead(buffer, offset, Math.Min(count, maxSocketRead), callback, state);
System.ServiceModel.Activation (1)
System.Web (4)
System.Web.Services (2)
System.Windows.Forms (2)
System.Xml (1)