13 references to Delete
Microsoft.AspNetCore.Hosting (2)
Internal\HostingTelemetryHelpers.cs (2)
34KeyValuePair.Create(HttpMethods.Delete, HttpMethods.Delete),
Microsoft.AspNetCore.Http.Abstractions (2)
HttpMethods.cs (2)
81return Equals(Delete, method); 190string _ when IsDelete(method) => Delete,
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointMetadataApiDescriptionProvider.cs (1)
51method.Equals(HttpMethods.Delete, StringComparison.Ordinal) ||
Microsoft.AspNetCore.OpenApi (1)
Services\OpenApiGenerator.cs (1)
91method.Equals(HttpMethods.Delete, StringComparison.Ordinal) ||
Microsoft.AspNetCore.Routing (4)
Builder\EndpointRouteBuilderExtensions.cs (1)
25private static readonly string[] DeleteVerb = new[] { HttpMethods.Delete };
Matching\HttpMethodDestinationsLookup.cs (2)
46case 'd' when method.Equals(HttpMethods.Delete, StringComparison.OrdinalIgnoreCase): 104'd' => (HttpMethods.Delete, _deleteDestination),
RouteEndpointDataSource.cs (1)
314method.Equals(HttpMethods.Delete, StringComparison.Ordinal) ||
Microsoft.AspNetCore.Server.HttpSys (1)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (1)
260HttpMethods.Delete,
Microsoft.AspNetCore.Server.IIS (1)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (1)
260HttpMethods.Delete,
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\HttpUtilities.Generated.cs (1)
52_methodNames[(byte)HttpMethod.Delete] = HttpMethods.Delete;