2 overrides of GetDisplayName
Microsoft.Extensions.Validation (2)
RuntimeValidatableParameterInfoResolver.cs (2)
106
public override string?
GetDisplayName
(ValidateContext context, string memberName, Type? type)
127
public override string?
GetDisplayName
(ValidateContext context, string memberName, Type? type)
7 references to GetDisplayName
Microsoft.Extensions.Validation (7)
DisplayNameInfo.cs (1)
20
/// pipeline calls <see cref="
GetDisplayName
(ValidateContext, string, Type?)"/> once per
ValidatableParameterInfo.cs (2)
81
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, type: null) ?? Name;
157
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, type: null) ?? Name;
ValidatablePropertyInfo.cs (2)
120
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, DeclaringType) ?? Name;
218
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, DeclaringType) ?? Name;
ValidatableTypeInfo.cs (2)
175
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Type.Name, Type) ?? Type.Name;
221
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Type.Name, Type) ?? Type.Name;