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

IModelBinder.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41a488d26b63526b549f3d30ba4aa4134a842552 (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    public interface IModelBinder
    {
        object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext);
    }
}