using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.IO { /// Specifies the position in a stream to use for seeking. // Token: 0x020002C5 RID: 709 [Token(Token = "0x20002C5")] [ComVisible(true)] [Serializable] public enum SeekOrigin { /// Specifies the beginning of a stream. // Token: 0x04000DDD RID: 3549 [Token(Token = "0x4000DDD")] Begin, /// Specifies the current position within a stream. // Token: 0x04000DDE RID: 3550 [Token(Token = "0x4000DDE")] Current, /// Specifies the end of a stream. // Token: 0x04000DDF RID: 3551 [Token(Token = "0x4000DDF")] End } }