Class ParameterBindingInfo
Encapsulates information for binding action-method parameters to a data model.
public abstract class ParameterBindingInfo
- Inheritance
-
ParameterBindingInfo
- Inherited Members
Constructors
ParameterBindingInfo()
Initializes a new instance of the ParameterBindingInfo class.
protected ParameterBindingInfo()
Properties
Binder
Gets the model binder.
public virtual IModelBinder Binder { get; }
Property Value
- IModelBinder
The model binder.
Exclude
Gets a comma-delimited list of property names for which binding is disabled.
public virtual ICollection<string> Exclude { get; }
Property Value
- ICollection<string>
The exclude list.
Include
Gets a comma-delimited list of property names for which binding is enabled.
public virtual ICollection<string> Include { get; }
Property Value
- ICollection<string>
The include list.
Prefix
Gets the prefix to use when the MVC framework binds a value to an action parameter or to a model property.
public virtual string Prefix { get; }
Property Value
- string
The prefix.