Skip to main content
A newer version of this page is available. .

AccessSettings.DataResources Property

Provides access to the AccessSettings class’s instance that allows you to specify data resource access settings.

Namespace: DevExpress.Security.Resources

Assembly: DevExpress.Data.v19.2.dll

Declaration

public static AccessSettings DataResources { get; }

Property Value

Type Description
AccessSettings

The object that allows you to set access rules to data resources.

Remarks

Data resources include: JSON 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());
See Also