Microsoft Internet Security and Acceleration Server 2004 SDK

FpcFetchUrlFlags

The FpcFetchUrlFlags enumerated type contains flags that control the behavior of the FetchUrl method.

typedef enum FpcFetchUrlFlags
{
  fpcFetchTtlIfNone
fpcFetchTtlIfNone
The TtlInMinutes parameter is used only if the object does not contain an "Expires" or "Cache-Control: maximum-age" HTTP header.
 = 1,
  fpcFetchTtlOverride
fpcFetchTtlOverride
The TtlInMinutes parameter takes precedence over any HTTP headers in the object.
 = 2,
  fpcFetchSynchronous
fpcFetchSynchronous
The method does not return until the fetch is completed.
 = 4,
  fpcFetchNoArrayRouting
fpcFetchNoArrayRouting
The object is fetched from the target server even if another array member is the preferred location.
 = 8,
  fpcFetchForceCache
fpcFetchForceCache
The object is cached even if it is not normally cacheable according to the HTTP specification.
 = 16,
  fpcFetchDynamicCache
fpcFetchDynamicCache
A dynamic object is cached even if it is not normally cacheable according to the HTTP specification.
 = 32

} FpcFetchUrlFlags;

Constants

fpcFetchTtlIfNone
The TtlInMinutes parameter is used only if the object does not contain an "Expires" or "Cache-Control: maximum-age" HTTP header.
fpcFetchTtlOverride
The TtlInMinutes parameter takes precedence over any HTTP headers in the object.
fpcFetchSynchronous
The method does not return until the fetch is completed.
fpcFetchNoArrayRouting
The object is fetched from the target server even if another array member is the preferred location.
fpcFetchForceCache
The object is cached even if it is not normally cacheable according to the HTTP specification.
fpcFetchDynamicCache
A dynamic object is cached even if it is not normally cacheable according to the HTTP specification.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Comenum.h.

See Also

Enumerated Types