Created
August 15, 2020 21:57
-
-
Save victorpanitz/9d135f0abe647c95eeefe3609732d7bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@available(iOS 7.0, *) | |
open class URLSession : NSObject { | |
open class var shared: URLSession { get } | |
public /*not inherited*/ init(configuration: URLSessionConfiguration) | |
public /*not inherited*/ init(configuration: URLSessionConfiguration, delegate: URLSessionDelegate?, delegateQueue queue: OperationQueue?) | |
open var delegateQueue: OperationQueue { get } | |
open var delegate: URLSessionDelegate? { get } | |
@NSCopying open var configuration: URLSessionConfiguration { get } | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment