Add 'SessionDefaults' docs & react to PR #36 changes

Grammatical fixes
This commit is contained in:
Hisham Abdullah Bin Ateya 2015-06-25 20:21:58 +03:00
parent bbc7393d22
commit 32ecf485b9
1 changed files with 10 additions and 0 deletions

View File

@ -5,9 +5,19 @@ using System;
namespace Microsoft.AspNet.Session
{
/// <summary>
/// Represents defaults for the Session.
/// </summary>
public static class SessionDefaults
{
/// <summary>
/// Represent the default cookie name, which is ".AspNet.Session".
/// </summary>
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 = "/";
}
}