래핑된 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();
프레임워크 앱은 이 동작을 사용함에 있어 어떠한 변경도 필요하지 않습니다.
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
ASP.NET Core