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

◆ BeginWrite() [1/2]

override IAsyncResult System.Net.RequestStream.BeginWrite ( byte[] buffer,
int offset,
int count,
AsyncCallback asyncCallback,
object asyncState )
inline

Definition at line 82 of file RequestStream.cs.

83 {
85 return _buffer.BeginWrite(buffer, offset, count, asyncCallback, asyncState);
86 }
static void ValidateBufferArguments(byte[] buffer, int offset, int count)
Definition Stream.cs:1044
virtual IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback? callback, object? state)
Definition Stream.cs:813
readonly MemoryStream _buffer

References System.Net.RequestStream._buffer, System.IO.Stream.BeginWrite(), System.buffer, System.count, System.offset, and System.IO.Stream.ValidateBufferArguments().