var progress: Progress
var countOfBytesExpectedToReceive : Int64
var countOfBytesReceived : Int64
var countOfBytesSent : Int64
let NSURLSessionTransferSizeUnknown : Int64
Availability 有効性
Technology
var countOfBytesExpectedToSend: Int64
{ get }
The URL loading system can determine the length of the upload data in three ways: URLローディングシステムは、アップロードデータの長さを3つの方法で決定できます:
From the length of the data object provided as the upload body. アップロードボディとして提供されたデータオブジェクトの長さから。
From the length of the file on disk provided as the upload body of an upload task (not a download task). アップロードタスク(ダウンロードタスクでなく)のアップロードボディとして提供されたディスク上のファイルの長さから。
From the Content-Length
in the request object, if you explicitly set it.
リクエストオブジェクトの中のContent-Length
から、もしあなたが明示的にそれを設定したならば。
Otherwise, the value is NSURLSession
(-1
) if you provided a stream or body data object, or zero (0
) if you did not.
そうでなければ、値はNSURLSession
(-1
)です、もしあなたがストリームまたはボディデータオブジェクトを提供するならば、またはゼロ(0
)もしあなたがそうしなかったならば。
var progress: Progress
var countOfBytesExpectedToReceive : Int64
var countOfBytesReceived : Int64
var countOfBytesSent : Int64
let NSURLSessionTransferSizeUnknown : Int64