HttpParameterBinding.GetValue Method (HttpActionContext)

 

Gets the parameter value from argument dictionary of the action context.

Namespace:   System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

protected object GetValue(
    HttpActionContext actionContext
)
protected:
Object^ GetValue(
    HttpActionContext^ actionContext
)
member GetValue : 
        actionContext:HttpActionContext -> Object
Protected Function GetValue (
    actionContext As HttpActionContext
) As Object

Parameters

Return Value

Type: System.Object

The value for this parameter in the given action context, or null if the parameter has not yet been set.

See Also

HttpParameterBinding Class
System.Web.Http.Controllers Namespace

Return to top