Controller.Binders Property

 

Gets or sets the binder.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

protected internal ModelBinderDictionary Binders { get; set; }
public protected:
property ModelBinderDictionary^ Binders {
    ModelBinderDictionary^ get();
    void set(ModelBinderDictionary^ value);
}
member Binders : ModelBinderDictionary with get, set
Protected Friend Property Binders As ModelBinderDictionary

Property Value

Type: System.Web.Mvc.ModelBinderDictionary

The binder.

Remarks

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.

See Also

Controller Class
System.Web.Mvc Namespace

Return to top