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

◆ BeginWrite() [1/2]

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

Definition at line 69 of file DelegatedStream.cs.

70 {
71 if (!CanWrite)
72 {
73 throw new NotSupportedException(System.SR.WriteNotSupported);
74 }
75 return _stream.BeginWrite(buffer, offset, count, callback, state);
76 }
virtual IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback? callback, object? state)
Definition Stream.cs:813
static string WriteNotSupported
Definition SR.cs:146
Definition SR.cs:7

References System.Net.DelegatedStream._stream, System.IO.Stream.BeginWrite(), System.buffer, System.Net.DelegatedStream.CanWrite, System.count, System.offset, System.state, and System.SR.WriteNotSupported.