Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/IO/SeekOrigin.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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
}
}