FpcCacheContent Enumeration

The FpcCacheContent enumerated type contains values that specify the conditions for which a response will be cached.

Syntax

typedef enum FpcCacheContent {
  fpcCacheAlways
fpcCacheAlways

The response is always cached, even if the request or response headers indicate that the response should not be cached.

				= 0,
  fpcCacheCacheableAndDynamic
fpcCacheCacheableAndDynamic

The response is cached only if the headers indicate that the response should be cached, and that the response is dynamic.

   = 1,
  fpcCacheCacheable
fpcCacheCacheable

The response is cached only if the headers indicate that the response should be cached.

			 = 2,
  fpcNeverCache
fpcNeverCache

The response is never cached.

				 = 3
} FpcRouteCacheContent;

Constants

fpcCacheAlways

The response is always cached, even if the request or response headers indicate that the response should not be cached.

fpcCacheCacheableAndDynamic

The response is cached only if the headers indicate that the response should be cached, and that the response is dynamic.

fpcCacheCacheable

The response is cached only if the headers indicate that the response should be cached.

fpcNeverCache

The response is never cached.

Requirements

Client Requires Windows Vista or Windows XP.
Server Requires Windows Server 2008.
Version Requires Forefront Threat Management Gateway (TMG).
Header

Declared in Comenum.h.

See Also

Enumerated Types


Send comments about this topic to Microsoft

Build date: 11/30/2009

© 2008 Microsoft Corporation. All rights reserved.