ControllerActionInvoker.CreateActionResult Method (System.Web.Mvc)

Switch View :
ScriptFree
.NET Framework Class Library
ControllerActionInvoker.CreateActionResult Method

Creates the action result.

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

Visual Basic
Protected Overridable Function CreateActionResult ( _
	controllerContext As ControllerContext, _
	actionDescriptor As ActionDescriptor, _
	actionReturnValue As Object _
) As ActionResult
C#
protected virtual ActionResult CreateActionResult(
	ControllerContext controllerContext,
	ActionDescriptor actionDescriptor,
	Object actionReturnValue
)
Visual C++
protected:
virtual ActionResult^ CreateActionResult(
	ControllerContext^ controllerContext, 
	ActionDescriptor^ actionDescriptor, 
	Object^ actionReturnValue
)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext
The controller context.
actionDescriptor
Type: System.Web.Mvc.ActionDescriptor
The action descriptor.
actionReturnValue
Type: System.Object
The action return value.

Return Value

Type: System.Web.Mvc.ActionResult
The action result object.
See Also

Reference