This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
namespace System.IO
{
/// <summary>Provides the fields that represent reference points in streams for seeking.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x020001CA RID: 458
[ComVisible(true)]
[Serializable]
public enum SeekOrigin
{
/// <summary>Specifies the beginning of a stream.</summary>
// Token: 0x040006F7 RID: 1783
Begin,
/// <summary>Specifies the current position within a stream.</summary>
// Token: 0x040006F8 RID: 1784
Current,
/// <summary>Specifies the end of a stream.</summary>
// Token: 0x040006F9 RID: 1785
End
}
}