BlockAllocatedMemoryStreamSeek Method

Sets the Position within the current stream to the specified value relative the origin.

Definition

Namespace: Gemstone.IO
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public override long Seek(
	long offset,
	SeekOrigin origin
)

Parameters

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.

Return Value

Int64
The new position within the stream, calculated by combining the initial reference point and the offset.

Exceptions

IOExceptionSeeking was attempted before the beginning of the stream.
ObjectDisposedExceptionThe stream is closed.

See Also