2 implementations of Session
Microsoft.AspNetCore.Http (1)
Features\DefaultSessionFeature.cs (1)
13public ISession Session { get; set; } = default!;
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;
3 references to Session
Microsoft.AspNetCore.Components.Endpoints (1)
SessionCascadingValueSupplier.cs (1)
65internal ISession? GetSession() => _httpContext?.Features.Get<ISessionFeature>()?.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;