The cookies from which the header fields are created. それからヘッダフィールドが作成されるクッキー。
Type Method
型メソッド
request
requestHeaderFields(with:)
Converts an array of cookies to a dictionary of header fields.
クッキーの配列をヘッダフィールドからなる辞書に変換します。
Availability 有効性
- iOS 2.0+
- iPadOS 2.0+
- macOS 10.2+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
class func requestHeaderFields(with cookies: [HTTPCookie
]) -> [String
: String
]
Parameters パラメータ
cookies
Return Value 戻り値
The dictionary of header fields created from the provided cookies. 提供されたクッキーから作成されたヘッダフィールドからなる辞書。
Discussion 議論
To send these headers as part of a URL request to a remote server, create an NSMutable
object, then call the all
or set
method to set the provided headers for the request. Finally, initialize and start an URLSession
instance based on that request object.
これらのヘッダーをあるURLリクエストの一部としてリモートサーバーに送るには、NSMutable
オブジェクトを作成してください、それからall
またはset
メソッドを呼び出して、提供されたヘッダをそのリクエストに対して設定してください。最後に、URLSession
インスタンスをそのリクエストオブジェクトに基づいて、初期化して開始してください