DefaultModelBinder.BindProperty Method

Definition

Binds the specified property by using the specified controller context and binding context and the specified property descriptor.

protected virtual void BindProperty (System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor);
abstract member BindProperty : System.Web.Mvc.ControllerContext * System.Web.Mvc.ModelBindingContext * System.ComponentModel.PropertyDescriptor -> unit
override this.BindProperty : System.Web.Mvc.ControllerContext * System.Web.Mvc.ModelBindingContext * System.ComponentModel.PropertyDescriptor -> unit
Protected Overridable Sub BindProperty (controllerContext As ControllerContext, bindingContext As ModelBindingContext, propertyDescriptor As PropertyDescriptor)

Parameters

controllerContext
ControllerContext

The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.

bindingContext
ModelBindingContext

The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.

propertyDescriptor
PropertyDescriptor

Describes a property to be bound. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.

Applies to