BlockAllocatedMemoryStreamSeek Method
Sets the
Position within the current stream to the specified value relative the
origin.
Namespace: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public override long Seek(
long offset,
SeekOrigin origin
)
Public Overrides Function Seek (
offset As Long,
origin As SeekOrigin
) As Long
public:
virtual long long Seek(
long long offset,
SeekOrigin origin
) override
function Seek(offset, origin);
- offset Int64
- The new position within the stream. This is relative to the origin parameter, and can be positive or negative.
- origin SeekOrigin
- A value of type SeekOrigin, which acts as the seek reference point.
Int64
The new position within the stream, calculated by combining the initial reference point and the offset.
IOException | Seeking was attempted before the beginning of the stream. |
ObjectDisposedException | The stream is closed. |