HttpParameterBinding.SetValue Method
Sets the result of this parameter binding in the argument dictionary of the action context.
Namespace: System.Web.Http.Controllers
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Protected Sub SetValue ( _
actionContext As HttpActionContext, _
value As Object _
)
'Usage
Dim actionContext As HttpActionContext
Dim value As Object
Me.SetValue(actionContext, value)
protected void SetValue(
HttpActionContext actionContext,
Object value
)
protected:
void SetValue(
HttpActionContext^ actionContext,
Object^ value
)
member SetValue :
actionContext:HttpActionContext *
value:Object -> unit
protected function SetValue(
actionContext : HttpActionContext,
value : Object
)
Parameters
actionContext
Type: System.Web.Http.Controllers.HttpActionContextThe action context.
value
Type: System.ObjectThe parameter value.