Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ BeginRead()

override IAsyncResult System.IO.IsolatedStorage.IsolatedStorageFileStream.BeginRead ( byte[] array,
int offset,
int numBytes,
AsyncCallback? userCallback,
object? stateObject )
inlinevirtual

Reimplemented from System.IO.FileStream.

Definition at line 261 of file IsolatedStorageFileStream.cs.

262 {
263 return _fs.BeginRead(array, offset, numBytes, userCallback, stateObject);
264 }
override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback? callback, object? state)

References System.IO.IsolatedStorage.IsolatedStorageFileStream._fs, System.array, System.IO.FileStream.BeginRead(), and System.offset.