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