8 references to Patch
Microsoft.AspNetCore.Hosting (2)
Internal\HostingTelemetryHelpers.cs (2)
38KeyValuePair.Create(HttpMethods.Patch, HttpMethods.Patch),
Microsoft.AspNetCore.Http.Abstractions (2)
HttpMethods.cs (2)
129return Equals(Patch, method); 193string _ when IsPatch(method) => Patch,
Microsoft.AspNetCore.Routing (3)
Builder\EndpointRouteBuilderExtensions.cs (1)
26private static readonly string[] PatchVerb = new[] { HttpMethods.Patch };
Matching\HttpMethodDestinationsLookup.cs (2)
69else if (method.Equals(HttpMethods.Patch, StringComparison.OrdinalIgnoreCase)) 112_ => (HttpMethods.Patch, _patchDestination),
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\HttpUtilities.Generated.cs (1)
56_methodNames[(byte)HttpMethod.Patch] = HttpMethods.Patch;