BufferedStream::Position Property
.NET Framework (current version)
Gets the position within the current stream.
Assembly: mscorlib (in mscorlib.dll)
public: property long long Position { virtual long long get() override; virtual void set(long long value) override; }
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The value passed to Seek is negative. |
| IOException | An I/O error occurs, such as the stream being closed. |
| NotSupportedException | The stream does not support seeking. |
| ObjectDisposedException | Methods were called after the stream was closed. |
The get accessor invokes Seek to obtain the current position within the underlying stream and then adjusts this value according to the current position within the buffer.
The set accessor copies any data previously written to the buffer to the underlying stream, and then invokes Seek.
Seeking to any location beyond the length of the stream is supported.
.NET Framework
Available since 1.1
Available since 1.1
Show: