// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Identity
{
///
/// Helpful constants for working with the authentication cookie compatibility shim.
///
public static class DefaultCompatibilityConstants
{
///
/// The default authentication type for application authentication cookies.
///
public const string ApplicationCookieAuthenticationType = "Microsoft.AspNet.Identity.Application.AuthType";
///
/// The default cookie name for application authentication cookies.
/// Used by .
///
public const string CookieName = ".AspNet.Microsoft.AspNet.Identity.Application";
}
}