Click or drag to resize

FtpDataStreamSeek Method

Sets the position within the current stream.

Namespace: GSF.Net.Ftp
Assembly: GSF.Net (in GSF.Net.dll) Version: 2.4.181-beta
Syntax
public override long Seek(
	long offset,
	SeekOrigin origin
)
View Source

Parameters

offset  Int64
A byte offset relative to the origin parameter.
origin  SeekOrigin
A value of type SeekOrigin indicating the reference point used to obtain the new position.

Return Value

Int64
The new position within the current stream.
Exceptions
ExceptionCondition
IOExceptionAn I/O error occurs.
NotSupportedExceptionStream does not support seeking.
ObjectDisposedExceptionMethods were called after the stream was closed.
See Also