System.IO.SeekOrigin is used by the Seek methods of System.IO.Stream, System.IO.BufferedStream, System.IO.FileStream, System.IO.MemoryStream, System.IO.BinaryWriter, and other classes. The Seek methods take an offset parameter that is relative to the position specified by System.IO.SeekOrigin.
Member Name | Description |
---|---|
Begin |
Specifies the beginning of a stream. |
Current |
Specifies the current position within a stream. |
End |
Specifies the end of a stream. |