Class
ConfirmationResult

Represents the result of a confirmation operation, indicating whether to continue or cancel.

Definition

Namespace:Telerik.Reporting.Services.Engine

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
public class ConfirmationResult

Inheritance: objectConfirmationResult

Constructors

ConfirmationResult()

Declaration

cs-api-definition
public ConfirmationResult()

Properties

Continue

Gets a value indicating whether the operation should continue.

Declaration

cs-api-definition
public bool Continue { get; }

Property Value

bool

Message

Gets the message associated with the current instance.

Declaration

cs-api-definition
public string Message { get; }

Property Value

string

Methods

CancelResult(string)

Creates a confirmation result indicating a cancellation, with the specified message.

Declaration

cs-api-definition
public static ConfirmationResult CancelResult(string message)

Parameters

message

string

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

cs-api-definition
public static ConfirmationResult ContinueResult()

Returns

ConfirmationResult

A ConfirmationResult object with the Continue property set to true.