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

◆ ThrowIfCantSeek()

void System.IO.Compression.WrappedStream.ThrowIfCantSeek ( )
inlineprivate

Definition at line 121 of file WrappedStream.cs.

122 {
123 if (!CanSeek)
124 {
125 throw new NotSupportedException(System.SR.SeekingNotSupported);
126 }
127 }
static string SeekingNotSupported
Definition SR.cs:114
Definition SR.cs:7

References System.IO.Compression.WrappedStream.CanSeek, and System.SR.SeekingNotSupported.

Referenced by System.IO.Compression.WrappedStream.Seek(), and System.IO.Compression.WrappedStream.SetLength().