Class CheckPermissionsSettings
Wrapper class for settings used for permission check of a folder.
public class CheckPermissionsSettings
- Inheritance
-
objectCheckPermissionsSettings
- Extension Methods
Constructors
CheckPermissionsSettings(string)
Initializes a new instance of CheckPermissionsSettings.
public CheckPermissionsSettings(string fullPath)
Parameters
fullPath
stringFull physical path to the folder.
CheckPermissionsSettings(string, bool, bool, bool, bool)
Initializes a new instance of CheckPermissionsSettings.
public CheckPermissionsSettings(string fullPath, bool checkRead, bool checkWrite, bool checkModify, bool checkDelete)
Parameters
fullPath
stringFull physical path to the folder.
checkRead
boolTrue, if check for 'Read' permission is to be done.
checkWrite
boolTrue, if check for 'Write' permission is to be done.
checkModify
boolTrue, if check for 'Modify' permission is to be done.
checkDelete
boolTrue, if check for 'Delete' permission is to be done.
Properties
CheckDelete
True, if check for 'Delete' permission is to be done.
public bool CheckDelete { get; }
Property Value
- bool
CheckModify
True, if check for 'Modify' permission is to be done.
public bool CheckModify { get; }
Property Value
- bool
CheckRead
True, if check for 'Read' permission is to be done.
public bool CheckRead { get; }
Property Value
- bool
CheckWrite
True, if check for 'Write' permission is to be done.
public bool CheckWrite { get; }
Property Value
- bool
FullPath
Full physical path of the folder.
public string FullPath { get; }
Property Value
- string