Introduction
Managing session and application state is a very common operation in any web based application. In ASP.NET Core 1.0, there is no readymade solution to keep track of application data so far. Anyway, we can implement our own application state and inject in the request pipeline. In this example, we have implemented singleton pattern in the ApplicationVariable
class. It has the ReturnOject()
function to maintain singleton state.
public class ApplicationVariable
{
public int _count = 0;
private static ApplicationVariable _ObjApp;
private readonly RequestDelegate _next;
public ApplicationVariable(RequestDelegate next)
{
_next = next;
}
public ApplicationVariable ReturnObject()
{
if (_ObjApp == null)
_ObjApp = new ApplicationVariable(_next);
return _ObjApp;
}
public async Task Invoke(HttpContext httpContext)
{
var count = ++ this.ReturnObject()._count;
httpContext.Response.Headers.Append("Count", count.ToString());
await _next.Invoke(httpContext);
}
}
The invoke
function takes the current context as a parameter and helps by making the class as injectable in HTTP pipeline. The function just increments the value of the _count
variable and sets "Count
" header to HTTP response with updated _count
value. Now, to inject the class in pipeline, we have to call the UseMiddleware<T>()
function in Configure
section.
public void Configure(IApplicationBuilder app)
{
app.UseIISPlatformHandler();
app.UseMiddleware<ApplicationVariable>();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
If we sniff response header, we will see that the Count
header is present in response and in each subsequent request, it’s retaining updated value.

This is our custom solution to implement Application state. How to maintain session state? To maintain session state, we need to add the following package from NuGet.
"Microsoft.AspNet.Session": "1.0.0-rc1-final"
The next step is to call the AddSession()
function in the ConfigurationService
section.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddSession();
services.AddCaching();
}
Call the UseSession()
function in the Configure
section.
public void Configure(IApplicationBuilder app)
{
app.UseSession();
app.UseIISPlatformHandler();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
Now, we are ready to use session in our controller. HttpContext
has Session
property which provides a couple of functions to play with session data. In this example, we are using SetString()
function to set data in session and GetString()
function to get data.
public ActionResult Index()
{
HttpContext.Session.SetString("Name", "Sourav Kayal");
var data = HttpContext.Session.GetString("Name");
return View();
}
How to access session data from outside of controller? We can use HttpContextAccessor
object to access session variable outside from controller
class. Here is an example code for the same:
public class SessionRapper
{
private readonly IHttpContextAccessor _httpContextAccessor;
private ISession _sessionContext => _httpContextAccessor.HttpContext.Session;
public SessionRapper(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public void SetToSession()
{
_sessionContext.SetString("Name", "Sourav Kayal");
}
public void GetFromSession()
{
var data = _sessionContext.GetString("Name");
}
}
Conclusion
HttpContext.Session
provides a couple of flavored functions like Set()
, SetInt32()
to store data and Get()
, GetInt32()
, GetString()
, TryGetValue()
to get value from session
.