public enum SeekOrigin
Object
ValueType
Enum
SeekOrigin
mscorlib
BCL
Defines the seek reference positions.
The SeekOrigin enumeration is used by the overrides of the System.IO.Stream.Seek(System.Int64,System.IO.SeekOrigin) method to set the seek reference point in a stream, which allows you to specify an offset from the reference point.
System.IO Namespace
SeekOrigin Fields
SeekOrigin.Begin Field
SeekOrigin.Current Field
SeekOrigin.End Field
SeekOrigin.value__ Field
Begin = 0;
Indicates that the seek reference point is the beginning of a stream.
System.IO.SeekOrigin Enum, System.IO Namespace
Current = 1;
Indicates that the seek reference point is the current position within a stream.
System.IO.SeekOrigin Enum, System.IO Namespace
End = 2;
Indicates that the seek reference point is the first byte beyond the end of a stream.
System.IO.SeekOrigin Enum, System.IO Namespace
value__;
System.IO.SeekOrigin Enum, System.IO Namespace