Classes | |
class | RequestCachePolicy |
Common request cache policy used for caching of Http, FTP, etc. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | HttpRequestCachePolicy |
HTTP cache policy that expresses RFC2616 HTTP caching semantic Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
Enumerations | |
enum class | RequestCacheLevel { Default = 0 , BypassCache = 1 , CacheOnly = 2 , CacheIfAvailable = 3 , Revalidate = 4 , Reload = 5 , NoCacheNoStore = 6 } |
The enum describes cache settings applicable for any WebRequest. More... | |
enum class | HttpRequestCacheLevel { Default = 0 , BypassCache = 1 , CacheOnly = 2 , CacheIfAvailable = 3 , Revalidate = 4 , Reload = 5 , NoCacheNoStore = 6 , CacheOrNextCacheOnly = 7 , Refresh = 8 } |
The enum describes cache settings for HTTP. More... | |
enum class | HttpCacheAgeControl { None = 0x0 , MinFresh = 0x1 , MaxAge = 0x2 , MaxStale = 0x4 , MaxAgeAndMinFresh = 0x3 , MaxAgeAndMaxStale = 0x6 } |
CacheAgeControl is used to specify preferences with respect of cached item age and freshness. More... | |
|
strong |
CacheAgeControl is used to specify preferences with respect of cached item age and freshness.
|
strong |
The enum describes cache settings for HTTP.
|
strong |
The enum describes cache settings applicable for any WebRequest.