using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.IO
{
/// Specifies the position in a stream to use for seeking.
// Token: 0x020002BE RID: 702
[Token(Token = "0x20002BE")]
[ComVisible(true)]
[Serializable]
public enum SeekOrigin
{
/// Specifies the beginning of a stream.
// Token: 0x04000DD3 RID: 3539
[Token(Token = "0x4000DD3")]
Begin,
/// Specifies the current position within a stream.
// Token: 0x04000DD4 RID: 3540
[Token(Token = "0x4000DD4")]
Current,
/// Specifies the end of a stream.
// Token: 0x04000DD5 RID: 3541
[Token(Token = "0x4000DD5")]
End
}
}