ConfirmationResult
Class
Represents the result of a confirmation operation, indicating whether to continue or cancel.
Definition
Namespace:Telerik.Reporting.Services.Engine
Assembly:Telerik.Reporting.dll
Syntax:
C#
public class ConfirmationResult
Inheritance: objectConfirmationResult
Constructors
C#
public ConfirmationResult()
Properties
Continue
bool
Gets a value indicating whether the operation should continue.
C#
public bool Continue { get; }
Message
string
Gets the message associated with the current instance.
C#
public string Message { get; }
Methods
Creates a confirmation result indicating a cancellation, with the specified message.
C#
public static ConfirmationResult CancelResult(string message)
The message describing the reason for the cancellation.
Returns:A ConfirmationResult object with Continue set to false and the specified message.
Creates a ConfirmationResult instance indicating that the operation should continue.
C#
public static ConfirmationResult ContinueResult()
A ConfirmationResult object with the Continue property set to true.