Skip to main content
.NET 8.0+

DevExpress v25.1 Update — Your Feedback Matters

Our What's New in v25.1 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

XafApplication.CreateCustomLogonWindowObjectSpace Event

Occurs when creating an Object Space for a Logon Window’s Detail View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v25.1.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public event EventHandler<CreateCustomLogonWindowObjectSpaceEventArgs> CreateCustomLogonWindowObjectSpace

#Event Data

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

Property Description
LogonParameters Specifies the Security System‘s logon parameters.
ObjectSpace Specifies a custom Object Space to be used by the Logon Window’s Detail View.

#Remarks

Handle this event to specify a custom Object Space for a Logon Window’s Detail View. Pass the required Object Space as the handler’s ObjectSpace parameter. To see an example of using this event, refer to the Customize Standard Authentication Behavior and Supply Additional Logon Parameters (.NET Applications) section.

Note

The CreateCustomLogonWindowObjectSpace event is not raised when the logon form is not created, e.g., when the AuthenticationBase.AskLogonParametersViaUI property is set to false.

See Also