Fix docs in 'SessionOptions'
This commit is contained in:
parent
9ce60218c1
commit
bbc7393d22
|
|
@ -8,7 +8,8 @@ namespace Microsoft.AspNet.Session
|
||||||
public class SessionOptions
|
public class SessionOptions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public string CookieName { get; set; } = SessionDefaults.CookieName;
|
public string CookieName { get; set; } = SessionDefaults.CookieName;
|
||||||
|
|
||||||
|
|
@ -18,7 +19,8 @@ namespace Microsoft.AspNet.Session
|
||||||
public string CookieDomain { get; set; }
|
public string CookieDomain { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public string CookiePath { get; set; } = SessionDefaults.CookiePath;
|
public string CookiePath { get; set; } = SessionDefaults.CookiePath;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue