class var ephemeral: URLSessionConfiguration
class func background(withIdentifier : String) -> URLSessionConfiguration
Availability 有効性
Technology
class var `default`: URLSessionConfiguration
{ get }
The default session configuration uses a persistent disk-based cache (except when the result is downloaded to a file) and stores credentials in the user’s keychain. It also stores cookies (by default) in the same shared cookie store as the NSURLConnection
and NSURLDownload
classes.
省略時のセッション構成設定は、ある永続ディスク基盤キャッシュを使います(結果がファイルにダウンロードされる場合を除きます)そして資格情報をユーザのもつキーチェーンに格納します。それはまたクッキーを(初期状態では)同じ共有クッキーストアの中にNSURLConnection
およびNSURLDownload
クラスとして格納します。
Note 注意
If you’re porting code based on the NSURLConnection
class, use this method to obtain an initial configuration object and then customize that object as needed.
あなたがNSURLConnection
クラスに基づくコードを移植しているならば、このメソッドを使って、初期構成設定オブジェクトを入手してください、それからそのオブジェクトを必要に応じてカスタマイズしてください。
Modifying the returned session configuration object does not affect any configuration objects returned by future calls to this method, and does not change the default behavior for existing sessions. It is therefore always safe to use the returned object as a starting point for additional customization. 返されるセッション構成設定オブジェクトを修正することは、このメソッドに対する将来の呼び出しによって返されるあらゆる構成設定オブジェクトに効果をもちません、そして既存のセッションに対する省略時の挙動を変更しません。返されるオブジェクトを追加的カスタマイズの出発点として使うのは従って常に安全です。
class var ephemeral: URLSessionConfiguration
class func background(withIdentifier : String) -> URLSessionConfiguration