Click or drag to resize
IConfirmViewConfirmWithUser Method
Asks the user to confirm some action. This must be a modal confirmation, the method should not return until the answer is known.

Namespace: VirtualRadar.Interface.View
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Nullable<bool> ConfirmWithUser(
	string title,
	string message,
	bool defaultYes
)

Parameters

title
Type: SystemString
message
Type: SystemString
defaultYes
Type: SystemBoolean

Return Value

Type: NullableBoolean
True if the answer is Yes, false if the answer is No, null if the answer is Cancel Everything.
See Also