1 implementation of TryGetValue
Microsoft.AspNetCore.Http (1)
Internal\RequestCookieCollection.cs (1)
119
public bool
TryGetValue
(string key, [NotNullWhen(true)] out string? value)
3 references to TryGetValue
IdentitySample.PasskeyConformance (2)
Program.cs (2)
85
if (!context.Request.Cookies.
TryGetValue
(passkeyStateCookie.Name, out var stateJson))
172
if (!context.Request.Cookies.
TryGetValue
(passkeyStateCookie.Name, out var stateJson))
SignalR.Client.FunctionalTestApp (1)
TestHub.cs (1)
145
if (cookies.
TryGetValue
(cookieName, out var cookieValue))