BufferedStream::Seek Method (Int64, SeekOrigin)
Sets the position within the current buffered stream.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- offset
-
Type:
System::Int64
A byte offset relative to origin.
- origin
-
Type:
System.IO::SeekOrigin
A value of type SeekOrigin indicating the reference point from which to obtain the new position.
| Exception | Condition |
|---|---|
| IOException | The stream is not open or is null. |
| NotSupportedException | The stream does not support seeking. |
| ObjectDisposedException | Methods were called after the stream was closed. |
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 BufferedStream object is the base stream for a StreamReader object, calling the Seek 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.
Available since 1.1