Controller::Binders Property
Gets or sets the binder.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
public protected: property ModelBinderDictionary^ Binders { ModelBinderDictionary^ get(); void set(ModelBinderDictionary^ value); }
The setter for this property supports unit-testing scenarios and is not intended to be called from user code. This property is provided so that you can create unit tests for form-post scenarios that call the TryUpdateModel and UpdateModel methods. If you are testing the TryUpdateModel and UpdateModel methods, you can set the Binders property to a mock version of the ModelBinderDictionary object instead of testing the global Binders collection.
Show: