2 overrides of GetDisplayName
Microsoft.Extensions.Validation (2)
RuntimeValidatableParameterInfoResolver.cs (2)
106
public override string?
GetDisplayName
(ValidateContext context, string memberName, Type? declaringType)
127
public override string?
GetDisplayName
(ValidateContext context, string memberName, Type? declaringType)
4 references to GetDisplayName
Microsoft.Extensions.Validation (4)
DisplayNameInfo.cs (1)
20
/// pipeline calls <see cref="
GetDisplayName
(ValidateContext, string, Type?)"/> once per
ValidatableParameterInfo.cs (1)
71
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, declaringType: null) ?? Name;
ValidatablePropertyInfo.cs (1)
85
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Name, DeclaringType) ?? Name;
ValidatableTypeInfo.cs (1)
155
var displayName = DisplayNameInfo?.
GetDisplayName
(context, Type.Name, Type) ?? Type.Name;