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

◆ Position

override long System.Text.TranscodingStream.Position
getset

Definition at line 51 of file TranscodingStream.cs.

52 {
53 get
54 {
55 throw new NotSupportedException(SR.NotSupported_UnseekableStream);
56 }
57 set
58 {
59 ThrowHelper.ThrowNotSupportedException_UnseekableStream();
60 }
61 }