Enumeration

enum SeekPosition

public enum SeekPosition {
    | Begin(Int64)
    | Current(Int64)
    | End(Int64)
}

Description: Indicates the position of the cursor in the file.

Begin(Int64)

Begin(Int64)

Description: Moves the cursor from the start point.

Current(Int64)

Current(Int64)

Description: Moves the cursor from the current position.

End(Int64)

End(Int64)

Description: Moves the cursor from the end.