Enum SeekOrigin
Specifies the position in a stream to use for seeking.
Namespace: System.IO
Assembly: System.IO.Streams.dll
Syntax
public enum SeekOrigin
Remarks
These constants match Win32's FILE_BEGIN, FILE_CURRENT, and FILE_END
Fields
Name | Description |
---|---|
Begin | Specifies the beginning of a stream. |
Current | Specifies the current position within a stream. |
End | Specifies the end of a stream. |