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

SecurityStrategy.AnonymousAllowedTypes Property

Specifies types that users can access anonymously before they log in.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v19.1.dll

Declaration

[Browsable(false)]
public IList<Type> AnonymousAllowedTypes { get; }

Property Value

Type Description
IList<Type>

A list of types that users can access anonymously.

Remarks

Anonymous access may be required when you use custom logon parameters and want to display certain data in the logon window before a user logs on. Add the required types to the AnonymousAllowedTypes collection to grant access to these types before a successful user authentication.

((SecurityStrategy)Security).AnonymousAllowedTypes.Add(typeof(Company));

This code should be executed before the application displays the logon window. For instance, you can add it to the application constructor in the WinApplication.cs (WinApplication.vb) and WebApplication.cs (WebApplication.vb) files.

See Also