New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.dll

Syntax:

C#
public class EmptyResult : ActionResult

Inheritance: objectActionResultEmptyResult

Inherited Members ActionResult.ShouldInvalidate

Constructors

C#
public EmptyResult()

Methods

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

C#
public override void Execute(object context)
Parameters:contextobject

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.