using System.Threading.Tasks; namespace Microsoft.AspNet.Mvc.ModelBinding { public interface IValueProviderFactory { /// /// Get a value provider with values from the given . /// /// RequestContext that value provider will populate from /// a value provider instance or null Task GetValueProviderAsync(RequestContext requestContext); } }