File: SessionFeature.cs
Web Access
Project: src\src\Middleware\Session\src\Microsoft.AspNetCore.Session.csproj (Microsoft.AspNetCore.Session)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
 
namespace Microsoft.AspNetCore.Session;
 
/// <inheritdoc />
public class SessionFeature : ISessionFeature
{
    /// <inheritdoc />
    public ISession Session { get; set; } = default!;
}