+ cachedHandleForURL:
- initWithURL:cached:
Availability 有効性
Technology
@interface NSURLHandle : NSObject
Important 重要
NSURLHandle
is deprecated in macOS 10.4 and later. Use NSURLSession
instead.
NSURLHandle
は、macOS 10.4以降では非推奨にされます。NSURLSession
を代わりに使ってください。
A single NSURLHandle
can service multiple equivalent NSURL
objects, but only if these URLs map to the same resource.
単一のNSURLHandle
が複数の等価のNSURL
オブジェクトに仕えることができます、しかしそれらのURLが同じリソースにマップする場合にのみです。
Cocoa provides private concrete subclasses to handle HTTP and file URL schemes. If you want to implement support for additional URL schemes, you would do so by creating a subclass of NSURLHandle
. You can use NSURL
and NSURLHandle
to download from FTP sites without subclassing.
Cocoaは、プライベート具象サブクラスいくらかを、HTTPおよびファイルURLスキームを取り扱うために提供します。あなたが追加のURLスキームに対するサポートを実装したいならば、あなたはNSURLHandle
のサブクラスを作成することによってそうするでしょう。あなたは、NSURL
とNSURLHandle
を使うことで、FTPサイトからサブクラス作成なしにダウンロードを行えます。
+ cachedHandleForURL:
- initWithURL:cached:
+ URLHandleClassForURL:
+ canInitWithURL:
+ registerURLHandleClass:
NSURLHandle
as an available subclass for handling URLs
NSURLHandle
のあるサブクラスを、URLを取り扱うために利用可能なサブクラスとして登録します。
- removeClient:
client
as an NSURLHandleClient
of the receiver.
レシーバのNSURLHandleClient
と同じclient
を取り除きます。
- propertyForKeyIfAvailable:
- writeProperty:forKey:
- availableResourceData
- backgroundLoadDidFailWithReason:
- beginLoadInBackground
- cancelLoadInBackground
- didLoadBytes:loadComplete:
- expectedResourceDataSize
- failureReason
- flushCachedData
- loadInBackground
- resourceData
- writeData:
NSFTPPropertyActiveTransferModeKey
NSNumber
object.
アクティブトランスファーモードにあるかどうかを回収するためのキー、NSNumber
オブジェクトの中にラップされるブールとして返されます。
NSFTPPropertyFTPProxy
NSDictionary
containing proxy information to use in place of proxy identified in SystemConfiguration.framework
.
プロキシ情報を含んでいるNSDictionary
、それはSystemConfiguration.framework
において同定されるプロキシの代わりに使うことになります。
NSFTPPropertyFileOffsetKey
NSNumber
object. The default value for this key is zero.
ファイルオフセットを回収するためのキー、NSNumber
オブジェクトとして返されます。このキーに対する省略時の値は、ゼロです。
NSFTPPropertyUserLoginKey
NSString
object.
ユーザログインに対するキー、NSString
オブジェクトとして返されます。
NSFTPPropertyUserPasswordKey
NSString
object.
ユーザパスワードに対するキー、NSString
オブジェクトとして返されます。
NSHTTPPropertyErrorPageDataKey
NSData
object.
エラーページをNSData
オブジェクトとして回収するためのキー。
NSHTTPPropertyHTTPProxy
NSDictionary
object containing proxy information to use in place of proxy identified in SystemConfiguration.framework
.
プロキシ情報を含んでいるNSDictionary
オブジェクトを回収するためのキー、SystemConfiguration.framework
において同定されるプロキシの代わりに使われることになります。
NSHTTPPropertyRedirectionHeadersKey
NSDictionary
object with each header value keyed to the header name.
リダイレクションヘッダを、ヘッダ名にキー付けされる各ヘッダ値をもつNSDictionary
オブジェクトとして回収するためのキー。
NSHTTPPropertyServerHTTPVersionKey
NSString
object containing the initial server status line up to the first space.
HTTPバージョンを、初期サーバ状態それらの行を最初の空きまで含んでいるNSString
オブジェクトとして回収するためのキー。
NSHTTPPropertyStatusCodeKey
NSNumber
object.
状態コードに対するキー、NSNumber
オブジェクトの中にラップされる整数として返されます。
NSHTTPPropertyStatusReasonKey
NSString
object.
状態コードに続くHTTP状態行の残りに対するキー、NSString
オブジェクトとして返されます。
NSURLHandleClient