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 クッキー方針を設定する