In-Process – is the default approach. It stores the session state locally on same web server memory where the application is running.
StateServer – stores session state in a process other than the one where application is running.
SQLServer – stores session state in SQL server database.
Custom – allows defining our custom storage provider.
Off – disables session storage.