StateServer
StateServer, in the context of ASP.NET, refers to the out-of-process session state provider known as the ASP.NET State Service or StateServer mode. It stores session data outside the web application’s worker process, in a dedicated Windows service, allowing multiple web servers in a farm to share session state without relying on in-process memory.
The State Service runs as a Windows service named ASP.NET State Service (the executable is typically aspnet_state.exe).
Objects stored in session state must be serializable, since the state data is serialized for transmission to
StateServer is commonly used in older ASP.NET deployments or where a lightweight out-of-process store is desired.