corelibraries-devexpress-dot-security-dot-resources-dot-accesssettings.md
Provides access to the AccessSettings class’s instance that allows you to specify data resource access settings.
Namespace : DevExpress.Security.Resources
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public static AccessSettings DataResources { get; }
Public Shared ReadOnly Property DataResources As AccessSettings
| Type | Description |
|---|---|
| AccessSettings |
The object that allows you to set access rules to data resources.
|
You can access this nested property as listed below:
| Object Type | Path to DataResources |
|---|---|
| AccessSettings |
.DataResources .DataResources
| | AccessSettings |
.ReportingSpecificResources .DataResources
| | AccessSettings |
.StaticResources .DataResources
|
Data resources include: JSON, Extract, and Excel data sources.
Use the SetRules(IAccessRule[]) method of the object that this property returns to specify data resource access rules.
// Allow JSON data load only from the "http://mysite.dev" URL
// Prohibit Excel data load (Excel data load from URLs is not supported)
DevExpress.Security.Resources.AccessSettings.DataResources.SetRules(UrlAccessRule.Allow("http://mysite.dev"), DirectoryAccessRule.Deny());
' Allow JSON data load only from the "http://mysite.dev" URL
' Prohibit Excel data load (Excel data load from URLs is not supported)
DevExpress.Security.Resources.AccessSettings.DataResources.SetRules(UrlAccessRule.Allow("http://mysite.dev"), DirectoryAccessRule.Deny())
See Also