2 overrides of GetDisplayName
Microsoft.Extensions.Validation (2)
RuntimeValidatableParameterInfoResolver.cs (2)
106public override string? GetDisplayName(ValidateContext context, string memberName, Type? type) 127public 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)
81var displayName = DisplayNameInfo?.GetDisplayName(context, Name, type: null) ?? Name; 157var displayName = DisplayNameInfo?.GetDisplayName(context, Name, type: null) ?? Name;
ValidatablePropertyInfo.cs (2)
120var displayName = DisplayNameInfo?.GetDisplayName(context, Name, DeclaringType) ?? Name; 218var displayName = DisplayNameInfo?.GetDisplayName(context, Name, DeclaringType) ?? Name;
ValidatableTypeInfo.cs (2)
175var displayName = DisplayNameInfo?.GetDisplayName(context, Type.Name, Type) ?? Type.Name; 221var displayName = DisplayNameInfo?.GetDisplayName(context, Type.Name, Type) ?? Type.Name;