namespace System.Web.ModelBinding { /// /// This interface provides a way for model binding system to use custom value providers like /// Form, QueryString, ViewState. /// public interface IValueProviderSource { IValueProvider GetValueProvider(ModelBindingExecutionContext modelBindingExecutionContext); } }