24 writes to Title
Aspire.Dashboard (4)
DashboardEndpointsBuilder.cs (4)
151Title = "Resource not found", 182Title = "Resource not found", 203Title = "Resource not found", 221Title = "Trace not found",
Microsoft.AspNetCore.Diagnostics (1)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
253Title = TypeNameHelper.GetTypeDisplayName(errorContext.Exception.GetType()),
Microsoft.AspNetCore.Http.Abstractions (1)
ProblemDetails\HttpValidationProblemDetails.cs (1)
42Title = "One or more validation errors occurred.";
Microsoft.AspNetCore.Http.Extensions (4)
_generated\1\ProblemDetailsJsonContext.HttpValidationProblemDetails.g.cs (1)
104Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Mvc.ProblemDetails)obj).Title = value!,
_generated\2\ProblemDetailsJsonContext.ProblemDetails.g.cs (1)
82Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Mvc.ProblemDetails)obj).Title = value!,
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (2)
192problemDetails.Title ??= defaults.Title; 200problemDetails.Title = reasonPhrase;
Microsoft.AspNetCore.Http.Results (5)
Results.cs (1)
811problemDetails.Title = title ?? problemDetails.Title;
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (2)
192problemDetails.Title ??= defaults.Title; 200problemDetails.Title = reasonPhrase;
TypedResults.cs (2)
794Title = title, 865problemDetails.Title = title ?? problemDetails.Title;
Microsoft.AspNetCore.Mvc.Core (8)
ControllerBase.cs (2)
1875Title = title, 1997Title = title,
Infrastructure\DefaultProblemDetailsFactory.cs (3)
51Title = title, 87problemDetails.Title = title; 101problemDetails.Title ??= clientErrorData.Title;
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (2)
192problemDetails.Title ??= defaults.Title; 200problemDetails.Title = reasonPhrase;
ValidationProblemDetails.cs (1)
21Title = Resources.ValidationProblemDescription_Title;
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
ProblemDetailsWrapper.cs (1)
96ProblemDetails.Title = value;
25 references to Title
Microsoft.AspNetCore.Http.Extensions (3)
_generated\1\ProblemDetailsJsonContext.HttpValidationProblemDetails.g.cs (1)
103Getter = static obj => ((global::Microsoft.AspNetCore.Mvc.ProblemDetails)obj).Title,
_generated\2\ProblemDetailsJsonContext.ProblemDetails.g.cs (1)
81Getter = static obj => ((global::Microsoft.AspNetCore.Mvc.ProblemDetails)obj).Title,
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (1)
195else if (problemDetails.Title is null)
Microsoft.AspNetCore.Http.Results (11)
Results.cs (5)
711/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 730/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 761/// <param name="title">The value for <see cref="ProblemDetails.Title" />. Defaults to "One or more validation errors occurred."</param> 785/// <param name="title">The value for <see cref="ProblemDetails.Title" />. Defaults to "One or more validation errors occurred."</param> 811problemDetails.Title = title ?? problemDetails.Title;
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (1)
195else if (problemDetails.Title is null)
TypedResults.cs (5)
754/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 775/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 821/// <param name="title">The value for <see cref="ProblemDetails.Title" />. Defaults to "One or more validation errors occurred."</param> 842/// <param name="title">The value for <see cref="ProblemDetails.Title" />. Defaults to "One or more validation errors occurred."</param> 865problemDetails.Title = title ?? problemDetails.Title;
Microsoft.AspNetCore.Mvc.Core (9)
ClientErrorData.cs (1)
24/// By default, this maps to <see cref="ProblemDetails.Title"/> and should not change
ControllerBase.cs (4)
1834/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 1853/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 1945/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 1969/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param>
Infrastructure\DefaultApiProblemDetailsWriter.cs (1)
59context.ProblemDetails.Title,
Infrastructure\ProblemDetailsFactory.cs (2)
19/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param> 38/// <param name="title">The value for <see cref="ProblemDetails.Title" />.</param>
src\aspnetcore\src\Shared\ProblemDetails\ProblemDetailsDefaults.cs (1)
195else if (problemDetails.Title is null)
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
ProblemDetailsWrapper.cs (2)
138if (!string.IsNullOrEmpty(ProblemDetails.Title)) 142ProblemDetails.Title);