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
@@ -0,0 +1,26 @@
using System;
using System.Runtime.InteropServices;
namespace System.Security.Permissions
{
/// <summary>Specifies the type of access to files allowed through the File dialog boxes.</summary>
// Token: 0x02000542 RID: 1346
[ComVisible(true)]
[Flags]
[Serializable]
public enum FileDialogPermissionAccess
{
/// <summary>No access to files through the File dialog boxes.</summary>
// Token: 0x0400141A RID: 5146
None = 0,
/// <summary>Ability to open files through the File dialog boxes.</summary>
// Token: 0x0400141B RID: 5147
Open = 1,
/// <summary>Ability to save files through the File dialog boxes.</summary>
// Token: 0x0400141C RID: 5148
Save = 2,
/// <summary>Ability to open and save files through the File dialog boxes.</summary>
// Token: 0x0400141D RID: 5149
OpenSave = 3
}
}