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

◆ Read() [1/2]

override int System.Net.DelegatedStream.Read ( byte[] buffer,
int offset,
int count )
inlineinherited

Definition at line 111 of file DelegatedStream.cs.

112 {
113 if (!CanRead)
114 {
115 throw new NotSupportedException(System.SR.ReadNotSupported);
116 }
117 return _stream.Read(buffer, offset, count);
118 }
int Read(byte[] buffer, int offset, int count)
static string ReadNotSupported
Definition SR.cs:144
Definition SR.cs:7

References System.Net.DelegatedStream._stream, System.buffer, System.Net.DelegatedStream.CanRead, System.count, System.offset, System.IO.Stream.Read(), and System.SR.ReadNotSupported.