Files
2026-06-04 11:42:34 +02:00

37 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.IO
{
/// <summary>Represents additional options for creating a <see cref="T:System.IO.FileStream" /> object.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x020001B9 RID: 441
[Flags]
[ComVisible(true)]
[Serializable]
public enum FileOptions
{
/// <summary>Indicates no additional parameters.</summary>
// Token: 0x0400067E RID: 1662
None = 0,
/// <summary>Indicates that a file is encrypted and can be decrypted only by using the same user account used for encryption.</summary>
// Token: 0x0400067F RID: 1663
Encrypted = 16384,
/// <summary>Indicates that a file is automatically deleted when it is no longer in use.</summary>
// Token: 0x04000680 RID: 1664
DeleteOnClose = 67108864,
/// <summary>Indicates that the file is to be accessed sequentially from beginning to end. The system can use this as a hint to optimize file caching. If an application moves the file pointer for random access, optimum caching may not occur; however, correct operation is still guaranteed. </summary>
// Token: 0x04000681 RID: 1665
SequentialScan = 134217728,
/// <summary>Indicates that the file is accessed randomly. The system can use this as a hint to optimize file caching.</summary>
// Token: 0x04000682 RID: 1666
RandomAccess = 268435456,
/// <summary>Indicates that a file can be used for asynchronous reading and writing. </summary>
// Token: 0x04000683 RID: 1667
Asynchronous = 1073741824,
/// <summary>Indicates that the system should write through any intermediate cache and go directly to disk.</summary>
// Token: 0x04000684 RID: 1668
WriteThrough = -2147483648
}
}