using System;
using System.Runtime.InteropServices;
namespace System.IO
{
/// Provides the fields that represent reference points in streams for seeking.
/// 2
// Token: 0x020001CA RID: 458
[ComVisible(true)]
[Serializable]
public enum SeekOrigin
{
/// Specifies the beginning of a stream.
// Token: 0x040006F7 RID: 1783
Begin,
/// Specifies the current position within a stream.
// Token: 0x040006F8 RID: 1784
Current,
/// Specifies the end of a stream.
// Token: 0x040006F9 RID: 1785
End
}
}