Click here to Skip to main content
15,885,244 members
Articles / Web Development / ASP.NET / ASP.NET Core

ASP.NET Core 2.0 Session State

Rate me:
Please Sign up or sign in to vote.
1.86/5 (3 votes)
1 Sep 2017CPOL1 min read 24.6K   1   5
How to store data in session state using ASP.NET Core. Continue reading...

Problem

How to store data in session state using ASP.NET Core.

Solution

Using an empty project from a previous post, amend Startup class ConfigureServices() method, add services for session and its backing store:

 

C#
public void ConfigureServices(
            IServiceCollection services)
        {
            services.AddDistributedMemoryCache();
            services.AddSession();
        }

Add the session middleware in Configure() method:

C#
public void Configure(
            IApplicationBuilder app,
            IHostingEnvironment env)
        {
            app.UseSession();

            app.Use(async (context, next) =>
            {
                context.Session.SetString("GreetingMessage", "Hello Session State");
                await next();
            });

            app.Run(async (context) =>
            {
                var message = context.Session.GetString("GreetingMessage");
                await context.Response.WriteAsync($"{message}");
            });
        }

Discussion

We can use session in order to share information between different HTTP requests coming from a single browser. The data is stored in a cache (IDistributedCache implementation to be specific) and accessed via HttpContext.Session property.

A cookie is stored in browser to correlated the HTTP requests. The default name of this cookie is .AspNet.Session.

During the configuration of session services, we can set various properties:

  • HttpOnly: Sets whether cookie is accessible through JavaScript. Default is true, which means it can’t be accessed via scripts on the client-side.
  • Name: Used to override the default cookie name.
  • SecurePolicy: Determines if session cookie is only transmitted via HTTPS requests.
  • IdleTimeout: Sets the time for session expiry, each request resets the timeout. Default is 20 minutes.
C#
public void ConfigureServices(
           IServiceCollection services)
        {
            services.AddDistributedMemoryCache();
            services.AddSession(options =>
            {
                options.Cookie.HttpOnly = true;
                options.Cookie.Name = ".Fiver.Session";
                options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
                options.IdleTimeout = TimeSpan.FromMinutes(10);
            });
        }

Storing Objects

HttpContext.Session (or ISession that it implements) does not provide a built-in way to store complex objects, however, we can serialize objects into JSON strings to achieve this:

C#
public static class SessionExtensions
    {
        public static void SetObject<T>(this ISession session, string key, T value)
        {
            session.SetString(key, JsonConvert.SerializeObject(value));
        }

        public static T GetObject<T>(this ISession session, string key)
        {
            var value = session.GetString(key);
            return value == null ? default(T) :
                                  JsonConvert.DeserializeObject<T>(value);
        }
    }

Now we can use these extension methods like below:

C#
public void Configure(
            IApplicationBuilder app,
            IHostingEnvironment env,
            ILoggerFactory loggerFactory)
        {
            app.UseSession();

            app.Use(async (context, next) =>
            {
                context.Session.SetObject("CurrentUser",
                    new UserInfo { Username = "James", Email = "james@bond.com"  });
                await next();
            });

            app.Run(async (context) =>
            {
                var user = context.Session.GetObject<UserInfo>("CurrentUser");
                await context.Response.WriteAsync($"{user.Username}, {user.Email}");
            });
        }

Accessing via Dependency Injection

To access session using dependency injection, you could use IHttpContextAccessor (via constructor), which gives you access to HttpContext.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionSession idleTimeout Pin
geetha naidu13-May-19 2:45
geetha naidu13-May-19 2:45 
QuestionNo service for type 'Microsoft.AspNetCore.Http.HttpContext' has been registered. sessions error Pin
David Alejandro Garcia Garcia10-May-18 6:13
David Alejandro Garcia Garcia10-May-18 6:13 
AnswerRe: No service for type 'Microsoft.AspNetCore.Http.HttpContext' has been registered. sessions error Pin
David Alejandro Garcia Garcia10-May-18 11:26
David Alejandro Garcia Garcia10-May-18 11:26 
QuestionSession Timeout Pin
Member 981250222-Nov-17 1:29
Member 981250222-Nov-17 1:29 
QuestionDoes not work across instances Pin
Nikodem Jaworski8-Nov-17 11:27
Nikodem Jaworski8-Nov-17 11:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.