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

XafApplication.AskConfirmation(ConfirmationType) Method

Requests an end-user confirmation.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public virtual ConfirmationResult AskConfirmation(
    ConfirmationType confirmationType
)

Parameters

Name Type Description
confirmationType ConfirmationType

A ConfirmationType enumeration value.

Returns

Type Description
ConfirmationResult

A ConfirmationResult enumeration value.

Remarks

Only the logging functionality is implemented in this virtual method. The confirmation type and default confirmation result are logged. The AskConfirmation method is overridden in the WinApplication class, and user interaction is performed by the WinApplication.AskConfirmation method. The WebApplication.AskConfirmation method does nothing except base functionality, because it is impossible to show a message box during a request.

See Also