parent
bbc7393d22
commit
32ecf485b9
|
|
@ -5,9 +5,19 @@ using System;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Session
|
namespace Microsoft.AspNet.Session
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Represents defaults for the Session.
|
||||||
|
/// </summary>
|
||||||
public static class SessionDefaults
|
public static class SessionDefaults
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Represent the default cookie name, which is ".AspNet.Session".
|
||||||
|
/// </summary>
|
||||||
public static readonly string CookieName = ".AspNet.Session";
|
public static readonly string CookieName = ".AspNet.Session";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Represents the default path used to create the cookie, which is "/".
|
||||||
|
/// </summary>
|
||||||
public static readonly string CookiePath = "/";
|
public static readonly string CookiePath = "/";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue