14 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 (12)
System\ComponentModel\DataAnnotations\CompareAttribute.cs (1)
30CultureInfo.CurrentCulture, ErrorMessageString, name, OtherPropertyDisplayName ?? OtherProperty);
System\ComponentModel\DataAnnotations\FileExtensionsAttribute.cs (1)
43string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, ExtensionsFormatted);
System\ComponentModel\DataAnnotations\LengthAttribute.cs (1)
80string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, MinimumLength, MaximumLength);
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
97string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, Length);
System\ComponentModel\DataAnnotations\MinLengthAttribute.cs (1)
80string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, Length);
System\ComponentModel\DataAnnotations\RangeAttribute.cs (1)
179return string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, Minimum, Maximum);
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
91return string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name, Pattern);
System\ComponentModel\DataAnnotations\StringLengthAttribute.cs (1)
74: 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" /> 322/// The base class implementation will use <see cref="ErrorMessageString" /> to obtain a localized 331string.Format(CultureInfo.CurrentCulture, ErrorMessageString, name);