Seek Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

When overridden in a derived class, sets the position within the current stream.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public MustOverride Function Seek ( _
    offset As Long, _
    origin As SeekOrigin _
) As Long
public abstract long Seek(
    long offset,
    SeekOrigin origin
)
public:
virtual long long Seek(
    long long offset, 
    SeekOrigin origin
) abstract
abstract Seek : 
        offset:int64 * 
        origin:SeekOrigin -> int64 
public abstract function Seek(
    offset : long, 
    origin : SeekOrigin
) : long

Parameters

Return Value

Type: System. . :: . .Int64
The new position within the current stream.

Remarks

Use the CanSeek property to determine whether the current instance supports seeking.

If offset is negative, the new position is required to precede the position specified by origin by the number of bytes specified by offset. If offset is zero (0), the new position is required to be the position specified by origin. If offset is positive, the new position is required to follow the position specified by origin by the number of bytes specified by offset.

Classes derived from Stream that support seeking must override this method to provide the functionality described above.

Seeking to any location beyond the length of the stream is supported.

.NET Framework Security

See Also

Reference

Stream Class

System.IO Namespace