Instance Property
インスタンスプロパティ
HTTPShouldSetCookies
A Boolean value that determines whether requests should contain cookies from the cookie store.
あるブール値、それはリクエストがクッキー貯蔵所からのクッキーを含むべきかどうかを決定します。
Declaration
宣言
@property BOOL HTTPShouldSetCookies;
Discussion
議論
This property controls whether tasks within sessions based on this configuration should automatically provide cookies from the shared cookie store when making requests.
このプロパティは、この構成設定に基づくセッションの中のタスクが、リクエストを作っている時に自動的にクッキーを共有クッキーストアから提供されるべきかどうかを制御します。
If you want to provide cookies yourself, set this value to NO
and provide a Cookie
header either through the session’s HTTPAdditionalHeaders
property or on a per-request level using a custom NSURLRequest
object.
あなたがクッキーをあなた自身で提供したいならば、この値をNO
に設定してください、そしてCookie
ヘッダを提供してください、セッションのもつHTTPAdditionalHeaders
プロパティを通して、またはリクエストごとの水準ではあつらえのNSURLRequest
オブジェクトを使ってのどちらかで。
The default value is YES
.
省略時の値は、YES
です。
See Also
参照
Setting Cookie Policies
クッキー方針を設定する
HTTPCookieAcceptPolicy
A policy constant that determines when cookies should be accepted.
ある方針定数、それはクッキーが受け入れられるべき場合を決定します。
HTTPCookieStorage
The cookie store for storing cookies within this session.
このセッション内のクッキーを格納するクッキー貯蔵所。
NSHTTPCookie
A representation of an HTTP cookie.
HTTPクッキーのある表現。