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