Click or drag to resize

BlockAllocatedMemoryStreamSeek Method

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

Namespace: GSF.IO
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntax
public override long Seek(
	long offset,
	SeekOrigin origin
)
View Source

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
ExceptionCondition
IOExceptionSeeking was attempted before the beginning of the stream.
ObjectDisposedExceptionThe stream is closed.
See Also