public static ModelBinderCache Basic() { var cache = new ModelBinderCache(); cache._binders.Add(StandardModelBinder.Basic()); return cache; }
public RecordingModelBinderWrapper(ModelBinderCache inner, Func<IDebugReport> report) { _inner = inner; _report = report; }