8 references to Patch
Microsoft.AspNetCore.Hosting (2)
Internal\HostingTelemetryHelpers.cs (2)
38
KeyValuePair.Create(HttpMethods.
Patch
, HttpMethods.
Patch
),
Microsoft.AspNetCore.Http.Abstractions (2)
HttpMethods.cs (2)
129
return Equals(
Patch
, method);
193
string _ when IsPatch(method) =>
Patch
,
Microsoft.AspNetCore.Routing (3)
Builder\EndpointRouteBuilderExtensions.cs (1)
26
private static readonly string[] PatchVerb = new[] { HttpMethods.
Patch
};
Matching\HttpMethodDestinationsLookup.cs (2)
69
else 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
;