oh dear
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user