11 references to AddFormatter
Microsoft.Extensions.Validation.Localization (11)
IValidationAttributeFormatter.cs (1)
29/// <see cref="ValidationAttributeFormatterRegistry.AddFormatter{TAttribute}(Func{TAttribute, IValidationAttributeFormatter})"/>.
ValidationAttributeFormatterRegistry.cs (9)
27/// <see cref="AddFormatter{TAttribute}(Func{TAttribute, IValidationAttributeFormatter})"/>, 65AddFormatter<RangeAttribute>(a => new RangeAttributeFormatter(a)); 66AddFormatter<MinLengthAttribute>(a => new MinLengthAttributeFormatter(a)); 67AddFormatter<MaxLengthAttribute>(a => new MaxLengthAttributeFormatter(a)); 68AddFormatter<LengthAttribute>(a => new LengthAttributeFormatter(a)); 69AddFormatter<StringLengthAttribute>(a => new StringLengthAttributeFormatter(a)); 70AddFormatter<RegularExpressionAttribute>(a => new RegularExpressionAttributeFormatter(a)); 71AddFormatter<FileExtensionsAttribute>(a => new FileExtensionsAttributeFormatter(a)); 72AddFormatter<CompareAttribute>(a => new CompareAttributeFormatter(a));
ValidationLocalizationOptions.cs (1)
109/// <see cref="ValidationAttributeFormatterRegistry.AddFormatter{TAttribute}(Func{TAttribute, IValidationAttributeFormatter})"/>.