From 22b1e320bdeabdde8fd84fe33cba61007e0c7ede Mon Sep 17 00:00:00 2001 From: doominator42 Date: Wed, 27 Aug 2025 12:51:09 -0400 Subject: [PATCH] Add QUERY to known HTTP methods in HostingTelemetryHelpers --- src/Hosting/Hosting/src/Internal/HostingTelemetryHelpers.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Hosting/Hosting/src/Internal/HostingTelemetryHelpers.cs b/src/Hosting/Hosting/src/Internal/HostingTelemetryHelpers.cs index e415869e9cff..40b5c606be88 100644 --- a/src/Hosting/Hosting/src/Internal/HostingTelemetryHelpers.cs +++ b/src/Hosting/Hosting/src/Internal/HostingTelemetryHelpers.cs @@ -35,6 +35,7 @@ internal static class HostingTelemetryHelpers KeyValuePair.Create(HttpMethods.Patch, HttpMethods.Patch), KeyValuePair.Create(HttpMethods.Post, HttpMethods.Post), KeyValuePair.Create(HttpMethods.Put, HttpMethods.Put), + KeyValuePair.Create(HttpMethods.Query, HttpMethods.Query), KeyValuePair.Create(HttpMethods.Trace, HttpMethods.Trace) ], StringComparer.OrdinalIgnoreCase);