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: 0x020002C5 RID: 709
|
|
[Token(Token = "0x20002C5")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum SeekOrigin
|
|
{
|
|
/// <summary>Specifies the beginning of a stream.</summary>
|
|
// Token: 0x04000DDD RID: 3549
|
|
[Token(Token = "0x4000DDD")]
|
|
Begin,
|
|
/// <summary>Specifies the current position within a stream.</summary>
|
|
// Token: 0x04000DDE RID: 3550
|
|
[Token(Token = "0x4000DDE")]
|
|
Current,
|
|
/// <summary>Specifies the end of a stream.</summary>
|
|
// Token: 0x04000DDF RID: 3551
|
|
[Token(Token = "0x4000DDF")]
|
|
End
|
|
}
|
|
}
|