AccessSettings.StaticResources Property
Provides access to the AccessSettings class’s instance that allows you to specify static resource access settings.
Namespace: DevExpress.Security.Resources
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
Property Value
Type | Description |
---|---|
AccessSettings | The object that allows you to set static resource access rules. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to StaticResources |
---|---|
AccessSettings |
|
AccessSettings |
|
AccessSettings |
StaticResources
|
Remarks
Static resources include images.
Use the SetRules(IAccessRule[]) method of the object that this property returns to specify static resource access rules.
// Allow images to be loaded only from the "C:\\StaticResources\\" file directory and "http://mysite.dev" site
DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(DirectoryAccessRule.Allow("C:\\StaticResources\\"), UrlAccessRule.Allow("http://mysite.dev"));
See Also