From bbc7393d221ab2c37ea1fbdc1100d99b8f8f2e72 Mon Sep 17 00:00:00 2001 From: Hisham Abdullah Bin Ateya Date: Thu, 25 Jun 2015 05:43:06 +0300 Subject: [PATCH] Fix docs in 'SessionOptions' --- src/Microsoft.AspNet.Session/SessionOptions.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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;