|
FtpDataStream.Seek Method
|
Sets the position within the current stream.
Namespace: GSF.Net.FtpAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.246-beta
Syntaxpublic 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
abstract Seek :
offset : int64 *
origin : SeekOrigin -> int64
override Seek :
offset : int64 *
origin : SeekOrigin -> int64
function Seek(offset, origin);
View SourceParameters
- 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
Int64The new position within the current stream.
ExceptionsException | Condition |
---|
IOException | An I/O error occurs. |
NotSupportedException | Stream does not support seeking. |
ObjectDisposedException | Methods were called after the stream was closed. |
See Also