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

◆ BeginRead() [2/3]

override IAsyncResult System.IO.DelegatingStream.BeginRead ( byte[] buffer,
int offset,
int count,
AsyncCallback callback,
object state )
inlineinherited

Definition at line 105 of file DelegatingStream.cs.

106 {
107 return _innerStream.BeginRead(buffer, offset, count, callback, state);
108 }
virtual IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback? callback, object? state)
Definition Stream.cs:688

References System.IO.DelegatingStream._innerStream, System.IO.Stream.BeginRead(), System.buffer, System.count, System.offset, and System.state.