You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We need to retrieve the document name in a case-insensitive manner to support case-insensitive document name resolution.
29
+
// The options are registered with a key equal to the document name, but in lowercase.
30
+
// The options monitor's Get() method is case-sensitive, which doesn't work well for OpenAPI document names here,
31
+
// as the document name is also used as the route to retrieve the document, so we need to ensure this is lowercased to achieve consistency with ASP.NET Core routing.
32
+
// See OpenApiServiceCollectionExtensions.cs for more info.
// We need to retrieve the document name in a case-insensitive manner to support case-insensitive document name resolution.
51
+
// The document service is registered with a key equal to the document name, but in lowercase.
52
+
// The GetRequiredKeyedService() method is case-sensitive, which doesn't work well for OpenAPI document names here,
53
+
// as the document name is also used as the route to retrieve the document, so we need to ensure this is lowercased to achieve consistency with ASP.NET Core routing.
54
+
// See OpenApiServiceCollectionExtensions.cs for more info.
0 commit comments