init?(properties: [HTTPCookiePropertyKey : Any])
The header fields used to create the HTTPCookie
objects.
HTTPCookie
オブジェクトを作成するのに使われるヘッダフィールド。
Availability 有効性
Technology
class func cookies(withResponseHeaderFields headerFields: [String
: String
],
for URL: URL
) -> [HTTPCookie
]
headerFields
The header fields used to create the HTTPCookie
objects.
HTTPCookie
オブジェクトを作成するのに使われるヘッダフィールド。
URL
The URL associated with the created cookies. 作成されたクッキーと結び付けられるURL。
The array of created cookies. 作成されたクッキーからなる配列。
This method ignores irrelevant header fields in header
, allowing dictionaries to contain additional data.
このメソッドは、header
において無関係なヘッダフィールドを無視して、辞書が追加的なデータを含むことを可能にします。
If header
doesn’t specify a domain for a given cookie, the cookie is created with a default domain value of URL
.
header
がドメインをある与えられたクッキーに対して指定しないならば、クッキーは省略時のドメイン値のURL
を使って作成されます。
If header
doesn’t specify a path for a given cookie, the cookie is created with a default path value of "/"
.
header
がパスをある与えられたクッキーに指定しないならば、クッキーは省略時のパス値の"/"
を使って作成されます。
init?(properties: [HTTPCookiePropertyKey : Any])