HttpActionContext.ActionArguments Property

Gets a list of action arguments.

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

Syntax

'Declaration
Public ReadOnly Property ActionArguments As Dictionary(Of String, Object)
    Get
'Usage
Dim instance As HttpActionContext
Dim value As Dictionary(Of String, Object)

value = instance.ActionArguments
public Dictionary<string, Object> ActionArguments { get; }
public:
property Dictionary<String^, Object^>^ ActionArguments {
    Dictionary<String^, Object^>^ get ();
}
member ActionArguments : Dictionary<string, Object>
function get ActionArguments () : Dictionary<String, Object>

Property Value

Type: System.Collections.Generic.Dictionary<String, Object>
A list of action arguments.

See Also

Reference

HttpActionContext Class

System.Web.Http.Controllers Namespace