New to Telerik ReportingStart a free 30-day trial

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

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)
Parameters:messagestring

The message describing the reason for the cancellation.

Returns:

ConfirmationResult

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()
Returns:

ConfirmationResult

A ConfirmationResult object with the Continue property set to true.