5 implementations of Session
Microsoft.AspNetCore.Http (1)
Features\DefaultSessionFeature.cs (1)
13public ISession Session { get; set; } = default!;
Microsoft.AspNetCore.Http.Tests (1)
DefaultHttpContextTests.cs (1)
491public ISession Session { get; set; }
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
SessionStateTempDataProviderTest.cs (1)
96public ISession Session { get; set; }
ViewComponentTests.cs (1)
263public ISession Session { get; set; }
Microsoft.AspNetCore.Session (1)
SessionFeature.cs (1)
13public ISession Session { get; set; } = default!;
1 write to Session
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
212SessionFeature.Session = value;
2 references to Session
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
208return feature.Session;
Microsoft.AspNetCore.Http.Abstractions (1)
HttpContext.cs (1)
102public ISession? Session => _context.Features.Get<ISessionFeature>()?.Session;