1 implementation of TryGetValue
Microsoft.AspNetCore.Session (1)
DistributedSession.cs (1)
132public bool TryGetValue(string key, [NotNullWhen(true)] out byte[]? value)
3 references to TryGetValue
Microsoft.AspNetCore.Components.Endpoints (1)
TempData\SessionStorageTempDataProvider.cs (1)
32if (session.TryGetValue(TempDataSessionStateKey, out var value))
Microsoft.AspNetCore.Http.Extensions (1)
SessionExtensions.cs (1)
79session.TryGetValue(key, out var value);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
SessionStateTempDataProvider.cs (1)
35if (session.TryGetValue(TempDataSessionStateKey, out var value))