Click or drag to resize

IViewManager.ShowRetryIgnoreCancelPopup Method

Shows "Retry"/"Ignore"/"Cancel" dialog.

Namespace:  Resto.Front.Api.UI
Assembly:  Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
bool? ShowRetryIgnoreCancelPopup(
	string title,
	string message,
	string retryBtnText = null,
	string ignoreBtnText = null,
	string cancelBtnText = null
)

Parameters

title
Type: System.String
Dialog title.
message
Type: System.String
Message text.
retryBtnText (Optional)
Type: System.String
Retry button text.
ignoreBtnText (Optional)
Type: System.String
Ignore button text.
cancelBtnText (Optional)
Type: System.String
Cancel button text.

Return Value

Type: Nullable<Boolean>
true if "Retry", false if "Ignore", null if "Cancel".
See Also