From dea425d3b27aaec343a3fb8d9a966f4102f6dd80 Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 2 Mar 2016 14:20:16 -0800 Subject: [PATCH] Update cookie name --- src/Microsoft.AspNetCore.Session/SessionDefaults.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Session/SessionDefaults.cs b/src/Microsoft.AspNetCore.Session/SessionDefaults.cs index 31c8748dc4..e9f590a0c7 100644 --- a/src/Microsoft.AspNetCore.Session/SessionDefaults.cs +++ b/src/Microsoft.AspNetCore.Session/SessionDefaults.cs @@ -9,9 +9,9 @@ namespace Microsoft.AspNetCore.Session public static class SessionDefaults { /// - /// Represent the default cookie name, which is ".AspNet.Session". + /// Represent the default cookie name, which is ".AspNetCore.Session". /// - public static readonly string CookieName = ".AspNet.Session"; + public static readonly string CookieName = ".AspNetCore.Session"; /// /// Represents the default path used to create the cookie, which is "/".