다음을 통해 공유


래핑된 ASP.NET Core 세션 상태

이 구현은 어댑터와 함께 사용할 수 있도록 ASP.NET Core에 제공된 세션을 래핑합니다. 세션은 Microsoft.AspNetCore.Http.ISession과 동일한 백업 저장소를 사용하지만 멤버에 대한 강력한 형식의 액세스를 제공합니다.

ASP.NET Core 구성은 다음과 유사합니다.

builder.Services.AddSystemWebAdapters()
    .AddJsonSessionSerializer(options =>
    {
        // Serialization/deserialization requires each session key to be registered to a type
        options.RegisterKey<int>("test-value");
        options.RegisterKey<SessionDemoModel>("SampleSessionItem");
    })
    .WrapAspNetCoreSession();

프레임워크 앱은 이 동작을 사용함에 있어 어떠한 변경도 필요하지 않습니다.