15 references to TypeNameHelper
Microsoft.AspNetCore.OpenApi (15)
src\Shared\ParameterBindingMethodCache.cs (14)
193
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"TryParse method found on {
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)} with incorrect format. Must be a static method with format");
194
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"bool TryParse(string, IFormatProvider, out {
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)})");
195
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"bool TryParse(string, out {
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)})");
287
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"BindAsync method found on {
TypeNameHelper
.GetTypeDisplayName(nonNullableParameterType, fullName: false)} with incorrect format. Must be a static method with format");
288
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"ValueTask<{
TypeNameHelper
.GetTypeDisplayName(nonNullableParameterType, fullName: false)}> BindAsync(HttpContext context, ParameterInfo parameter)");
289
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"ValueTask<{
TypeNameHelper
.GetTypeDisplayName(nonNullableParameterType, fullName: false)}> BindAsync(HttpContext context)");
290
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"ValueTask<{
TypeNameHelper
.GetTypeDisplayName(nonNullableParameterType, fullName: false)}?> BindAsync(HttpContext context, ParameterInfo parameter)");
291
stringBuilder.AppendLine(CultureInfo.InvariantCulture, $"ValueTask<{
TypeNameHelper
.GetTypeDisplayName(nonNullableParameterType, fullName: false)}?> BindAsync(HttpContext context)");
347
$"The public parameterized constructor must contain only parameters that match the declared public properties for type '{
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)}'.");
363
throw new InvalidOperationException($"The abstract type '{
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)}' is not supported.");
403
throw new InvalidOperationException($"Only a single public parameterized constructor is allowed for type '{
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)}'.");
406
throw new InvalidOperationException($"No public parameterless constructor found for type '{
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)}'.");
435
var typeName =
TypeNameHelper
.GetTypeDisplayName(type, fullName: true, nestedTypeDelimiter: '.');
466
throw new InvalidOperationException($"{
TypeNameHelper
.GetTypeDisplayName(type, fullName: false)} implements multiple interfaces defining a static {interfaceMethod} method causing ambiguity.");
src\Shared\PropertyAsParameterInfo.cs (1)
103
throw new InvalidOperationException($"The nullable type '{
TypeNameHelper
.GetTypeDisplayName(parameters[i].ParameterType, fullName: false)}' is not supported.");