FileDialogPermissionAccess | serializable, flag |
System.Security.Permissions (mscorlib.dll) | enum |
public enum FileDialogPermissionAccess {
None = 0x00000000,Open = 0x00000001,Save = 0x00000002,OpenSave = 0x00000003
}
This enumeration is used in conjunction with the
FileDialogPermission class to specify the type of
file dialog access a FileDialogPermission object
represents. Open represents the ability to call
the System.Windows.Forms.OpenFileDialog.OpenFile(
) method, and Save represents the
ability to call the
System.Windows.Forms.SaveFileDialog.OpenFile( )
method. The OpenSave value represents the combined
permissions of both the Open and
Save values; None represents no
access.
Hierarchy
System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable, System.IConvertible)
FileDialogPermissionAccess
Returned By
FileDialogPermission.Access
Passed To
FileDialogPermission.{Access,
FileDialogPermission( )}
|