1 implementation of GetAttributeAdapter
Microsoft.AspNetCore.Mvc.DataAnnotations (1)
ValidationAttributeAdapterProvider.cs (1)
20public IAttributeAdapter? GetAttributeAdapter(ValidationAttribute attribute, IStringLocalizer? stringLocalizer)
5 references to GetAttributeAdapter
Microsoft.AspNetCore.Mvc.DataAnnotations (3)
DataAnnotationsClientModelValidatorProvider.cs (2)
81var adapter = _validationAttributeAdapterProvider.GetAttributeAdapter(attribute, stringLocalizer); 94Validator = _validationAttributeAdapterProvider.GetAttributeAdapter(
DataAnnotationsModelValidator.cs (1)
134var adapter = _validationAttributeAdapterProvider.GetAttributeAdapter(Attribute, _stringLocalizer);
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (2)
ValidationAttributeAdapterProviderTest.cs (2)
58var adapter = _validationAttributeAdapterProvider.GetAttributeAdapter(attribute, stringLocalizer: null); 84var adapter = _validationAttributeAdapterProvider.GetAttributeAdapter(attribute, stringLocalizer: null);