16 references to ErrorMessageString
Microsoft.AspNetCore.Mvc.DataAnnotations (1)
CompareAttributeAdapter.cs (1)
73ErrorMessageString,
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
RemoteAttributeBase.cs (1)
119return string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name);
System.ComponentModel.Annotations (14)
System\ComponentModel\DataAnnotations\AsyncValidationAttribute.cs (2)
25/// <param name="errorMessage">A non-localized error message to use in <see cref="ValidationAttribute.ErrorMessageString" />.</param> 32/// Allows for providing a resource accessor function that will be used by the <see cref="ValidationAttribute.ErrorMessageString" />
System\ComponentModel\DataAnnotations\CompareAttribute.cs (1)
29FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\FileExtensionsAttribute.cs (1)
44FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\LengthAttribute.cs (1)
79FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
96FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\MinLengthAttribute.cs (1)
79FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\RangeAttribute.cs (1)
185return FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
91return FormatMessage(ErrorMessageString, name);
System\ComponentModel\DataAnnotations\StringLengthAttribute.cs (1)
75: ErrorMessageString;
System\ComponentModel\DataAnnotations\ValidationAttribute.cs (4)
53/// <param name="errorMessage">A non-localized error message to use in <see cref="ErrorMessageString" />.</param> 60/// Allows for providing a resource accessor function that will be used by the <see cref="ErrorMessageString" /> 344/// The base class implementation uses <see cref="ErrorMessageString" /> to obtain a localized 353FormatMessage(ErrorMessageString, name);