2 implementations of TryGetValue
Microsoft.AspNetCore.Http (2)
QueryCollection.cs (1)
136
public bool
TryGetValue
(string key, out StringValues value)
QueryCollectionInternal.cs (1)
61
public bool
TryGetValue
(string key, out StringValues value) => Store.TryGetValue(key, out value);
6 references to TryGetValue
Aspire.Dashboard (2)
Model\ValidateTokenMiddleware.cs (2)
37
else if (context.Request.Query.
TryGetValue
("t", out var value) && _options.CurrentValue.Frontend.AuthMode == FrontendAuthMode.BrowserToken)
71
if (context.Request.Query.
TryGetValue
("returnUrl", out var returnUrl))
Microsoft.AspNetCore.Components.Endpoints (1)
Builder\OpaqueRedirection.cs (1)
68
if (!httpContext.Request.Query.
TryGetValue
("url", out var protectedUrl))
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionDispatcher.cs (2)
571
if (context.Request.Query.
TryGetValue
("NegotiateVersion", out var queryStringVersion))
598
if (options.AllowStatefulReconnects == true && context.Request.Query.
TryGetValue
("UseStatefulReconnect", out var useStatefulReconnectValue))
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DefaultPageHandlerMethodSelector.cs (1)
155
if (context.HttpContext.Request.Query.
TryGetValue
(Handler, out var queryValues))