Skip to main content

DirectoryAccessRule.Deny(String[]) Method

Creates the DirectoryAccessRule that denies resource load from the file directories passed as the parameter.

Namespace: DevExpress.Security.Resources

Assembly: DevExpress.Data.v24.2.dll

NuGet Package: DevExpress.Data

#Declaration

public static DirectoryAccessRule Deny(
    params string[] directories
)

#Parameters

Name Type Description
directories String[]

An array of file directories that this rule denies. Other directories are considered as allowed in this application.

#Returns

Type Description
DirectoryAccessRule

An instance of the DirectoryAccessRule class.

#Remarks

You can pass nothing as the method’s parameter to create a rule that denies access to all file directories:

// Image load from file directories is denied
DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(DirectoryAccessRule.Deny()); 

Pass the file directories that should not be accessible in the application to deny resource loading from them:

// Image load from the specified file directories is denied. Images from other directories are accessible.
DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(DirectoryAccessRule.Deny("http://mysite.dev")); 
See Also