diff --git a/src/Microsoft.AspNet.Session/SessionOptions.cs b/src/Microsoft.AspNet.Session/SessionOptions.cs index f309fb0401..a1043ff530 100644 --- a/src/Microsoft.AspNet.Session/SessionOptions.cs +++ b/src/Microsoft.AspNet.Session/SessionOptions.cs @@ -8,7 +8,8 @@ namespace Microsoft.AspNet.Session public class SessionOptions { /// - /// Determines the cookie name used to persist the session ID. The default value is ".AspNet.Session". + /// Determines the cookie name used to persist the session ID. + /// Defaults to . /// public string CookieName { get; set; } = SessionDefaults.CookieName; @@ -18,7 +19,8 @@ namespace Microsoft.AspNet.Session public string CookieDomain { get; set; } /// - /// Determines the path used to create the cookie. The default value is "/" for highest browser compatibility. + /// Determines the path used to create the cookie. + /// Defaults to . /// public string CookiePath { get; set; } = SessionDefaults.CookiePath;