2 types derived from BindingBehaviorAttribute
System.Web (2)
ModelBinding\BindNeverAttribute.cs (1)
5
public sealed class BindNeverAttribute :
BindingBehaviorAttribute
{
ModelBinding\BindRequiredAttribute.cs (1)
5
public sealed class BindRequiredAttribute :
BindingBehaviorAttribute
{
5 references to BindingBehaviorAttribute
System.Web (5)
ModelBinding\MutableObjectModelBinder.cs (5)
137
BindingBehaviorAttribute
typeAttr = modelDescriptor.GetAttributes().OfType<
BindingBehaviorAttribute
>().SingleOrDefault();
140
BindingBehaviorAttribute
propAttr = propertyDescriptor.Attributes.OfType<
BindingBehaviorAttribute
>().SingleOrDefault();
141
BindingBehaviorAttribute
workingAttr = propAttr ?? typeAttr;