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

httpCookieAcceptPolicy

A policy constant that determines when cookies should be accepted. ある方針定数、それはクッキーが受け入れられるべき場合を決定します。

Declaration 宣言

var httpCookieAcceptPolicy: HTTPCookie.AcceptPolicy { get set }

Discussion 議論

This property determines the cookie accept policy for all tasks within sessions based on this configuration. このプロパティは、クッキー受入方針を、この構成設定に基づくセッション内の全てのタスクに対して決定します。

The default value is HTTPCookie.AcceptPolicy.onlyFromMainDocumentDomain. You can change it to any of the constants defined in the HTTPCookie.AcceptPolicy enumerated type. 省略時の値は、HTTPCookie.AcceptPolicy.onlyFromMainDocumentDomainです。あなたは、それをHTTPCookie.AcceptPolicy列挙型において定義されるどんな定数にも変更できます。

If you want more direct control over what cookies are accepted, set this value to HTTPCookie.AcceptPolicy.never and then use the allHeaderFields and cookies(withResponseHeaderFields:for:) methods to extract cookies from the URL response object yourself. あなたがより直接な制御をどんなクッキーが受け入れられるかに対して望むならば、この値をHTTPCookie.AcceptPolicy.neverに設定して、それからallHeaderFieldscookies(withResponseHeaderFields:for:)メソッドを使ってURL応答オブジェクトからクッキーをあなた自身で抽出してください。

See Also 参照

Setting Cookie Policies クッキー方針を設定する