Back to Devexpress

XafApplication.LoggedOn Event

expressappframework-devexpress-dot-expressapp-dot-xafapplication-692f2892.md

latest2.3 KB
Original Source

XafApplication.LoggedOn Event

Occurs after an end-user has logged on.

Namespace : DevExpress.ExpressApp

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public event EventHandler<LogonEventArgs> LoggedOn
vb
Public Event LoggedOn As EventHandler(Of LogonEventArgs)

Event Data

The LoggedOn event's data class is LogonEventArgs. The following properties provide information specific to this event:

PropertyDescription
LogonParametersGets the current logon parameters.

Remarks

Handle this event to execute custom code after a logon has been performed, the SecuritySystem object is initialized, the logon parameters have been saved and user model differences are loaded.

For an example, see How to: Show Notifications to a Specific User.

Note

Exceptions that occur within the LoggedOn event handler are not handled by XafApplication automatically, because it is too late to cancel a logon when this event occurs. So, it is recommended that you wrap your handler code into try-catch blocks.

See Also

LoggingOn

LoggingOff

LoggedOff

XafApplication Class

XafApplication Members

DevExpress.ExpressApp Namespace