Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SecurityStrategy.AllowAnonymousAccess Property

Specifies if users can access all secured data anonymously before they log in.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v24.2.dll

#Declaration

[Browsable(false)]
public bool AllowAnonymousAccess { get; set; }

#Property Value

Type Description
Boolean

true, if users can access secured data anonymously; otherwise, false.

#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.

Important

It is not recommended to allow anonymous access to all data using the AllowAnonymousAccess property. Instead, grant access to specific types only using the AnonymousAllowedTypes property.

See Also