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

◆ Length

override long System.Net.DelegatedStream.Length
getinherited

Definition at line 19 of file DelegatedStream.cs.

20 {
21 get
22 {
23 if (!CanSeek)
24 {
25 throw new NotSupportedException(System.SR.SeekNotSupported);
26 }
27 return _stream.Length;
28 }
29 }
static string SeekNotSupported
Definition SR.cs:142
Definition SR.cs:7