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

◆ Position

override long System.Net.DelegatedStream.Position
getsetinherited

Definition at line 31 of file DelegatedStream.cs.

32 {
33 get
34 {
35 if (!CanSeek)
36 {
37 throw new NotSupportedException(System.SR.SeekNotSupported);
38 }
39 return _stream.Position;
40 }
41 set
42 {
43 if (!CanSeek)
44 {
45 throw new NotSupportedException(System.SR.SeekNotSupported);
46 }
47 _stream.Position = value;
48 }
49 }
static string SeekNotSupported
Definition SR.cs:142
Definition SR.cs:7