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

◆ BeginRead() [1/2]

override IAsyncResult System.Net.Base64Stream.BeginRead ( byte[] buffer,
int offset,
int count,
AsyncCallback callback,
object state )
inline

Definition at line 230 of file Base64Stream.cs.

231 {
233 ReadAsyncResult readAsyncResult = new ReadAsyncResult(this, buffer, offset, count, callback, state);
234 readAsyncResult.Read();
235 return readAsyncResult;
236 }
static void ValidateBufferArguments(byte[] buffer, int offset, int count)
Definition Stream.cs:1044

References System.buffer, System.count, System.offset, System.Net.Base64Stream.ReadAsyncResult.Read(), System.state, and System.IO.Stream.ValidateBufferArguments().