14 references to ErrorMessageString
Microsoft.AspNetCore.Mvc.DataAnnotations (1)
CompareAttributeAdapter.cs (1)
73
ErrorMessageString
,
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
RemoteAttributeBase.cs (1)
119
return string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name);
System.ComponentModel.Annotations (12)
System\ComponentModel\DataAnnotations\CompareAttribute.cs (1)
30
CultureInfo.CurrentCulture,
ErrorMessageString
, name, OtherPropertyDisplayName ?? OtherProperty);
System\ComponentModel\DataAnnotations\FileExtensionsAttribute.cs (1)
43
string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name, ExtensionsFormatted);
System\ComponentModel\DataAnnotations\LengthAttribute.cs (1)
80
string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name, MinimumLength, MaximumLength);
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
97
string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name, Length);
System\ComponentModel\DataAnnotations\MinLengthAttribute.cs (1)
80
string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name, Length);
System\ComponentModel\DataAnnotations\RangeAttribute.cs (1)
179
return string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name, Minimum, Maximum);
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
91
return 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
331
string.Format(CultureInfo.CurrentCulture,
ErrorMessageString
, name);