Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IModelBinderProvider.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eac700a104e7a5af239c62734dbd6e88570581fe (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public interface IModelBinderProvider
    {
        IModelBinder GetBinder(Type modelType);
    }
}