Skip to main content
All docs
V26.1
  • UrlAccessRule(AccessPermission, String[]) Constructor

    Creates the UrlAccessRule that provides the specified access permission to specified URLs.

    Namespace: DevExpress.Security.Resources

    Assembly: DevExpress.Data.v26.1.dll

    NuGet Package: DevExpress.Data

    Declaration

    public UrlAccessRule(
        AccessPermission permission,
        params string[] urls
    )

    Parameters

    Name Type Description
    permission AccessPermission

    The AccessPermission enumeration value that specifies whether the created rule allows or denies access to the specified URls.

    urls String[]

    An array of Urls that the created rule allows or denies.

    Remarks

    You can use the static Allow(String[]) or Deny(String[]) method to create an instance of the UrlAccessRule class.

    See Also