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
fullPathstringFull 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
fullPathstringFull physical path to the folder.
checkReadboolTrue, if check for 'Read' permission is to be done.
checkWriteboolTrue, if check for 'Write' permission is to be done.
checkModifyboolTrue, if check for 'Modify' permission is to be done.
checkDeleteboolTrue, 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