Fix docs in 'SessionOptions'

This commit is contained in:
Hisham Abdullah Bin Ateya 2015-06-25 05:43:06 +03:00
parent 9ce60218c1
commit bbc7393d22
1 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,8 @@ namespace Microsoft.AspNet.Session
public class SessionOptions
{
/// <summary>
/// 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 <see cref="SessionDefaults.CookieName"/>.
/// </summary>
public string CookieName { get; set; } = SessionDefaults.CookieName;
@ -18,7 +19,8 @@ namespace Microsoft.AspNet.Session
public string CookieDomain { get; set; }
/// <summary>
/// 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 <see cref="SessionDefaults.CookiePath"/>.
/// </summary>
public string CookiePath { get; set; } = SessionDefaults.CookiePath;