IControllerActionArgumentBinder Interface

Summary

Provides a dictionary of action arguments.

Syntax

public interface IControllerActionArgumentBinder

GitHub

View on GitHub

interface Microsoft.AspNet.Mvc.IControllerActionArgumentBinder

Methods

BindActionArgumentsAsync(Microsoft.AspNet.Mvc.ActionContext, Microsoft.AspNet.Mvc.ActionBindingContext, System.Object)

Returns a dictionary of representing the parameter-argument name-value pairs, which can be used to invoke the action. Also binds properties explicitly marked properties on the

<paramref name=”controller” />.

Arguments:
Return type:

System.Threading.Tasks.Task{System.Collections.Generic.IDictionary{System.String,System.Object}}

Task<IDictionary<string, object>> BindActionArgumentsAsync(ActionContext context, ActionBindingContext bindingContext, object controller)