// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Session { /// /// Represents defaults for the Session. /// public static class SessionDefaults { /// /// Represent the default cookie name, which is ".AspNetCore.Session". /// public static readonly string CookieName = ".AspNetCore.Session"; /// /// Represents the default path used to create the cookie, which is "/". /// public static readonly string CookiePath = "/"; } }