Class
EmptyResult

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.dll

Syntax:

cs-api-definition
public class EmptyResult : ActionResult

Inheritance: objectActionResultEmptyResult

Inherited Members ActionResult.ShouldInvalidate

Constructors

EmptyResult()

Declaration

cs-api-definition
public EmptyResult()

Methods

Execute(object)

When implemented in a derived class, executes the action with the specified context.

Declaration

cs-api-definition
public override void Execute(object context)

Parameters

context

object

The context object containing information necessary for action execution. This can be any object type depending on the specific action implementation.

Overrides ActionResult.Execute(object)

Remarks

This method must be implemented by derived classes to define the specific behavior of the action. The context parameter provides the necessary data for the action to complete its operation.