6 references to RangeAttribute
System.Web (4)
ModelBinding\DataAnnotationsModelValidatorProvider.cs (2)
38
typeof(
RangeAttribute
),
39
(metadata, context, attribute) => new RangeAttributeAdapter(metadata, context, (
RangeAttribute
)attribute)
ModelBinding\RangeAttributeAdapter.cs (2)
4
public sealed class RangeAttributeAdapter : DataAnnotationsModelValidator<
RangeAttribute
> {
5
public RangeAttributeAdapter(ModelMetadata metadata, ModelBindingExecutionContext context,
RangeAttribute
attribute)
System.Web.DynamicData (2)
DynamicData\FieldTemplateUserControl.cs (2)
493
var
rangeAttribute = column.Attributes.OfType<
RangeAttribute
>().FirstOrDefault();