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