From 32ecf485b9cd6bf1f24b98eb15e3b959f3d80ca1 Mon Sep 17 00:00:00 2001 From: Hisham Abdullah Bin Ateya Date: Thu, 25 Jun 2015 20:21:58 +0300 Subject: [PATCH] Add 'SessionDefaults' docs & react to PR #36 changes Grammatical fixes --- src/Microsoft.AspNet.Session/SessionDefaults.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Microsoft.AspNet.Session/SessionDefaults.cs b/src/Microsoft.AspNet.Session/SessionDefaults.cs index a498ca8e6e..0fc76225ee 100644 --- a/src/Microsoft.AspNet.Session/SessionDefaults.cs +++ b/src/Microsoft.AspNet.Session/SessionDefaults.cs @@ -5,9 +5,19 @@ using System; namespace Microsoft.AspNet.Session { + /// + /// Represents defaults for the Session. + /// public static class SessionDefaults { + /// + /// Represent the default cookie name, which is ".AspNet.Session". + /// public static readonly string CookieName = ".AspNet.Session"; + + /// + /// Represents the default path used to create the cookie, which is "/". + /// public static readonly string CookiePath = "/"; } } \ No newline at end of file