ControllerActionInvoker.GetParameterValues Method

Gets the values of the action-method parameters.

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

'Declaration
Protected Overridable Function GetParameterValues ( _
	controllerContext As ControllerContext, _
	actionDescriptor As ActionDescriptor _
) As IDictionary(Of String, Object)
'Usage
Dim controllerContext As ControllerContext 
Dim actionDescriptor As ActionDescriptor 
Dim returnValue As IDictionary(Of String, Object)

returnValue = Me.GetParameterValues(controllerContext, _
	actionDescriptor)

Parameters

controllerContext
Type: System.Web.Mvc.ControllerContext

The controller context.

actionDescriptor
Type: System.Web.Mvc.ActionDescriptor

The action descriptor.

Return Value

Type: System.Collections.Generic.IDictionary(Of String, Object)
The values of the action-method parameters.
Show: