Class ConfirmationResult
Represents the result of a confirmation operation, indicating whether to continue or cancel.
Inheritance
Namespace: Telerik.Reporting.Services.Engine
Assembly: Telerik.Reporting.dll
Syntax
public class ConfirmationResult
Remarks
Use the static methods ContinueResult() and CancelResult(String) to create instances of this class.
Constructors
ConfirmationResult()
Declaration
public ConfirmationResult()
Properties
Continue
Gets a value indicating whether the operation should continue.
Declaration
public bool Continue { get; }
Property Value
System.Boolean
|
Message
Gets the message associated with the current instance.
Declaration
public string Message { get; }
Property Value
System.String
|
Methods
CancelResult(String)
Creates a confirmation result indicating a cancellation, with the specified message.
Declaration
public static ConfirmationResult CancelResult(string message)
Parameters
System.String
message
The message describing the reason for the cancellation. |
Returns
ConfirmationResult
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
ConfirmationResult
A ConfirmationResult object with the Continue property set to true. |