ActionResult.ExecuteResult Method (ControllerContext)

 

Enables processing of the result of an action method by a custom type that inherits from the ActionResult class.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

public abstract void ExecuteResult(
    ControllerContext context
)
public:
virtual void ExecuteResult(
    ControllerContext^ context
) abstract
abstract ExecuteResult : 
        context:ControllerContext -> unit
Public MustOverride Sub ExecuteResult (
    context As ControllerContext
)

Parameters

  • context
    Type: System.Web.Mvc.ControllerContext

    The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.

Remarks

The ExecuteResult method is called by the MCV framework to run the action result using the specified controller context.

See Also

ActionResult Class
System.Web.Mvc Namespace

Return to top