Instance Property
インスタンスプロパティ
httpShouldSetCookies
A Boolean value that determines whether requests should contain cookies from the cookie store.
あるブール値、それはリクエストがクッキー貯蔵所からのクッキーを含むべきかどうかを決定します。
Declaration
宣言
var httpShouldSetCookies: Bool
{ get set }
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 false
and provide a Cookie
header either through the session’s httpAdditionalHeaders
property or on a per-request level using a custom NSURLRequest
object.
あなたがクッキーをあなた自身で提供したいならば、この値をfalse
に設定してください、そしてCookie
ヘッダを提供してください、セッションのもつhttpAdditionalHeaders
プロパティを通して、またはリクエストごとの水準ではあつらえのNSURLRequest
オブジェクトを使ってのどちらかで。
The default value is true
.
省略時の値は、true
です。
See Also
参照
Setting Cookie Policies
クッキー方針を設定する