This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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
}
}