Share via


HttpActionContext.ActionArguments Property

 

Gets a list of action arguments.

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

Syntax

public Dictionary<string, object> ActionArguments { get; }
public:
property Dictionary<String^, Object^>^ ActionArguments {
    Dictionary<String^, Object^>^ get();
}
member ActionArguments : Dictionary<string, Object> with get
Public ReadOnly Property ActionArguments As Dictionary(Of String, Object)

Property Value

Type: System.Collections.Generic.Dictionary<String, Object>

A list of action arguments.

See Also

HttpActionContext Class
System.Web.Http.Controllers Namespace

Return to top