Skip to content

Instantly share code, notes, and snippets.

@victorpanitz
Created August 15, 2020 21:57
Show Gist options
  • Save victorpanitz/9d135f0abe647c95eeefe3609732d7bc to your computer and use it in GitHub Desktop.
Save victorpanitz/9d135f0abe647c95eeefe3609732d7bc to your computer and use it in GitHub Desktop.
@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