Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/9fdc5dc22728cf9c8c064b40378ac33b to your computer and use it in GitHub Desktop.
Save lgolubyev/9fdc5dc22728cf9c8c064b40378ac33b to your computer and use it in GitHub Desktop.
builder.Services.AddSession(options =>
{
options.Cookie.Name = ".AdventureWorks.Session";
options.IdleTimeout = TimeSpan.FromSeconds(10);
Options.Cookie.IsEssential = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment