- offset
- A byte offset relative to origin.
- origin
- A value of type System.IO.SeekOrigin indicating the reference point from which to obtain the new position.
The new position within the current buffered stream.
If offset is negative, the new position will precede the position specified by origin by the number of bytes specified by offset. If offset is 0, the new position will be the position specified by origin. If offset is positive, the new position will follow the position specified by origin by the number of bytes specified by offset.
When a System.IO.BufferedStream object is the base stream for a System.IO.StreamReader object, calling the BufferedStream.Seek(long, SeekOrigin) method can cause the position of the stream to no longer match the position of the internal buffer in the reader. To reset the internal buffer, call the StreamReader.DiscardBufferedData method; however, this method slows performance and should be called only when absolutely necessary.
Seeking to any location beyond the length of the stream is supported.