Files
linux-packaging-mono/mcs/class/referencesource/System.Web/ModelBinding/IModelBinder.cs

7 lines
203 B
C#
Raw Normal View History

namespace System.Web.ModelBinding {
public interface IModelBinder {
bool BindModel(ModelBindingExecutionContext modelBindingExecutionContext, ModelBindingContext bindingContext);
}
}