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)
694
public override IAsyncResult
BeginRead
(byte[] buffer, int offset,
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
666
public override IAsyncResult
BeginRead
(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
net\System\Net\filewebrequest.cs (1)
626
public 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)
697
return m_fs.
BeginRead
(buffer, offset, numBytes, userCallback, stateObject);
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
679
return base.
BeginRead
(buffer, offset, count, callback, state);
net\System\Net\filewebrequest.cs (1)
629
return base.
BeginRead
(buffer, offset, size, callback, state);
System.Data (1)
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
311
return m_fs.
BeginRead
(buffer, offset, count, callback, state);