Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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
'Declaration
Protected Function GetValue ( _
actionContext As HttpActionContext _
) As Object
'Usage
Dim actionContext As HttpActionContext
Dim returnValue As Object
returnValue = Me.GetValue(actionContext)
protected Object GetValue(
HttpActionContext actionContext
)
protected:
Object^ GetValue(
HttpActionContext^ actionContext
)
member GetValue :
actionContext:HttpActionContext -> Object
protected function GetValue(
actionContext : HttpActionContext
) : Object
Parameters
actionContext
Type: System.Web.Http.Controllers.HttpActionContextThe action context.
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.