24 lines
633 B
C#
24 lines
633 B
C#
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
|
|
}
|
|
}
|