Instance Property インスタンスプロパティ

requestCachePolicy

A predefined constant that determines when to return a response from the cache. あるあらかじめ定義された定数、それはある応答がキャッシュから返されることになる時を決定します。

Declaration 宣言

var requestCachePolicy: NSURLRequest.CachePolicy { get set }

Discussion 議論

This property determines the request caching policy used by tasks within sessions based on this configuration. このプロパティは、この構成設定に基づくセッション内のタスクによって使われるリクエストキャッシュ方針を決定します。

Set this property to one of the constants defined in NSURLRequest.CachePolicy to specify whether the cache policy should depend on expiration dates and age, whether the cache should be disabled entirely, and whether the server should be contacted to determine if the content has changed since it was last requested. このプロパティをNSURLRequest.CachePolicyで定義される定数の1つに設定することで、キャッシュ方針が有効期限と世代に基づくべきか、キャッシュがすっかり無効にされるべきか、そしてその内容がそれが最後にリクエストされた時から変化したか決定するためにサーバに連絡をとるべきかを指定します。

The default value is NSURLRequest.CachePolicy.useProtocolCachePolicy. 省略時の値は、NSURLRequest.CachePolicy.useProtocolCachePolicyです。

See Also 参照

Setting Caching Policies キャッシュ方針を設定する