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