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

UrlAccessSecurityLevel Enum

Lists the values specifying whether a report control allows loading images using the “file://“ protocol.

Namespace: DevExpress.Utils

Assembly: DevExpress.Data.v18.2.dll

Declaration

public enum UrlAccessSecurityLevel

Members

Name Description
Unrestricted

Enables loading of any image from any directory.

FilesFromBaseDirectory

Enables loading of images from an application’s working directory (defined by the AppDomain.CurrentDomain.BaseDirectory property).

WebUrlsOnly

Forbids loading images using the “file://“ protocol (only the “http://“, “https://“ and “ftp://“ protocols are supported).

Custom

Enables loading of images from custom directories (defined using the UrlAccessSecurityLevelSetting.RegisterCustomBaseDirectories or UrlAccessSecurityLevelSetting.RegisterCustomCallback method).

Related API Members

The following properties accept/return UrlAccessSecurityLevel values:

Remarks

A UrlAccessSecurityLevel enumeration value is returned by the UrlAccessSecurityLevelSetting.SecurityLevel property.

See Also