Base:
method
BeginRead
System.IO.Stream.BeginRead(System.Byte[], System.Int32, System.Int32, System.AsyncCallback, System.Object)
3 overrides of BeginRead
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
694public override IAsyncResult BeginRead(byte[] buffer, int offset,
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
666public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
net\System\Net\filewebrequest.cs (1)
626public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) {
4 references to BeginRead
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefilestream.cs (1)
697return m_fs.BeginRead(buffer, offset, numBytes, userCallback, stateObject);
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
679return base.BeginRead(buffer, offset, count, callback, state);
net\System\Net\filewebrequest.cs (1)
629return base.BeginRead(buffer, offset, size, callback, state);
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
311return m_fs.BeginRead(buffer, offset, count, callback, state);