// 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.AspNet.Mvc
{
///
/// Determines the value for the "Cache-control" header in the response.
///
public enum ResponseCacheLocation
{
///
/// Cached in both proxies and client.
/// Sets "Cache-control" header to "public".
///
Any = 0,
///
/// Cached only in the client.
/// Sets "Cache-control" header to "private".
///
Client = 1,
///
/// "Cache-control" and "Pragma" headers are set to "no-cache".
///
None = 2
}
}