Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/IModelBinder.cs

7 lines
174 B
C#
Raw Normal View History

namespace System.Web.Mvc {
public interface IModelBinder {
object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext);
}
}