Ejemplo n.º 1
0
        protected override Task <IDictionary <string, object> > BindActionArgumentsAsync(
            ActionContext context,
            ActionBindingContext bindingContext)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            if (bindingContext == null)
            {
                throw new ArgumentNullException(nameof(bindingContext));
            }

            return(_argumentBinder.BindActionArgumentsAsync(context, bindingContext, Instance));
        }
 protected override Task <IDictionary <string, object> > BindActionArgumentsAsync(
     ActionContext context,
     ActionBindingContext bindingContext)
 {
     return(_argumentBinder.BindActionArgumentsAsync(context, bindingContext, Instance));
 }
Ejemplo n.º 3
0
 protected override Task <IDictionary <string, object> > BindActionArgumentsAsync()
 {
     return(_argumentBinder.BindActionArgumentsAsync(Context, Instance));
 }