getCookiesFor(_:completionHandler:)
Fetches cookies relevant to the specified task and passes them to the completion handler.
Declaration
func getCookiesFor(_ task: URLSessionTask, completionHandler: @escaping @Sendable ([HTTPCookie]?) -> Void)func cookies(for task: URLSessionTask) async -> [HTTPCookie]?Parameters
- task:
The task performing a request. The cookie storage can use the URL and other properties of this task’s request to determine which cookies to fetch.
- completionHandler:
A completion handler that receives an array of cookies as its argument.