Skip to main content
All docs
V26.1
  • UrlAccessRule.Allow(String[]) Method

    Creates the UrlAccessRule rule that allows resource loading only from the URLs passed as the parameter.

    Namespace: DevExpress.Security.Resources

    Assembly: DevExpress.Data.v26.1.dll

    NuGet Package: DevExpress.Data

    Declaration

    public static UrlAccessRule Allow(
        params string[] urls
    )

    Parameters

    Name Type Description
    urls String[]

    An array of URLs that this rule allows. Other URLs are considered as denied in this application.

    Returns

    Type Description
    UrlAccessRule

    An instance of the UrlAccessRule class.

    Remarks

    You can pass nothing as the method’s parameter to create a rule that allows access to all URLs:

    // Image load from URLs is allowed
    DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(UrlAccessRule.Allow()); 
    

    Pass the URLs that should be accessible in the application to allow resource loading only from them:

    // Image load is allowed only from the specified URL.
    DevExpress.Security.Resources.AccessSettings.StaticResources.SetRules(UrlAccessRule.Allow("http://mysite.dev"));
    

    The following code snippets (auto-collected from DevExpress Examples) contain references to the Allow(String[]) method.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also