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