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