Table of Contents

Class CheckPermissionsSettings

Namespace
CMS.IO
Assembly
CMS.IO.dll

Wrapper class for settings used for permission check of a folder.

public class CheckPermissionsSettings
Inheritance
object
CheckPermissionsSettings
Extension Methods

Constructors

CheckPermissionsSettings(string)

Initializes a new instance of CheckPermissionsSettings.

public CheckPermissionsSettings(string fullPath)

Parameters

fullPath string

Full 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 string

Full physical path to the folder.

checkRead bool

True, if check for 'Read' permission is to be done.

checkWrite bool

True, if check for 'Write' permission is to be done.

checkModify bool

True, if check for 'Modify' permission is to be done.

checkDelete bool

True, 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