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