Overview of System.Web adapters for ASP.NET Core
mainThe System.Web adapters project enables large-scale, incremental migration from ASP.NET (System.Web.dll based) to ASP.NET Core. It provides a bridge between the two frameworks by offering a subset of System.Web APIs backed by Microsoft.AspNetCore.Http types.
The project consists of four main components:
Microsoft.AspNetCore.SystemWebAdapters: Provides the core API subset.Microsoft.AspNetCore.SystemWebAdapters.CoreServices: Services for the ASP.NET Core application side.Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices: Services for the ASP.NET Framework application side.Microsoft.AspNetCore.SystemWebAdapters.Abstractions: Shared abstractions (like session serialization) used by both implementations.