corelibraries-devexpress-dot-security-dot-resources-dot-directoryaccessrule-dot-deny-x28-system-dot-string-x29.md
Creates the DirectoryAccessRule that denies resource load from the file directories passed as the parameter.
Namespace : DevExpress.Security.Resources
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public static DirectoryAccessRule Deny(
params string[] directories
)
Public Shared Function Deny(
ParamArray directories As String()
) As DirectoryAccessRule
| Name | Type | Description |
|---|---|---|
| directories | String[] |
An array of file directories that this rule denies. Other directories are considered as allowed in this application.
|
| Type | Description |
|---|---|
| DirectoryAccessRule |
An instance of the DirectoryAccessRule class.
|
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());
' 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"));
' Image load from file directories is denied
DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(DirectoryAccessRule.Deny())
See Also