Make 'SessionDefaults' fields as Constants
This commit is contained in:
parent
c858e3bfcd
commit
9ce60218c1
|
|
@ -7,7 +7,7 @@ namespace Microsoft.AspNet.Session
|
|||
{
|
||||
public static class SessionDefaults
|
||||
{
|
||||
public static string CookieName = ".AspNet.Session";
|
||||
public static string CookiePath = "/";
|
||||
public static readonly string CookieName = ".AspNet.Session";
|
||||
public static readonly string CookiePath = "/";
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue