class func cookies(withResponseHeaderFields : [String : String], for: URL) -> [HTTPCookie]
The properties for the new cookie object, expressed as key-value pairs. 、新しいクッキーオブジェクトのためのプロパティ、キー値ペアとして表される。
Availability 有効性
Technology
init?(properties: [HTTPCookiePropertyKey
: Any])
properties
The properties for the new cookie object, expressed as key-value pairs. 、新しいクッキーオブジェクトのためのプロパティ、キー値ペアとして表される。
A new cookie object, with the given properies. 新しいクッキーオブジェクト、与えられたプロパティを持つ。
This initializer returns nil
if the provided properties are invalid. To successfully create a cookie, you must provide values for (at least) the path
, name
, and value
keys, and either the origin
key or the domain
key.
このイニシャライザはnil
を返します、与えられたプロパティが無効ならば。クッキーを首尾よく作成するために、あなたは値を(少なくとも)path
、name
、そしてvalue
キーに、そしてorigin
キーまたはdomain
キーのどちらかに提供しなければなりません。
See Accepting Cookies for more information on the available cookie attribute constants and the constraints imposed on the values in the dictionary. 利用可能なクッキー属性定数に、そして辞書の中の値に課せられる制約に関するさらなる情報としてクッキーを受け取るを見てください。
class func cookies(withResponseHeaderFields : [String : String], for: URL) -> [HTTPCookie]
+ cookieWithProperties: