27 lines
823 B
C#
27 lines
823 B
C#
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
|
|
}
|
|
}
|