var httpMethod : String
The HTTP request method.
HTTPリクエストメソッド。
var url: URL?
The URL being requested.
要請されているURL。
var httpBody : Data?
The request body.
要請本文。
var mainDocumentURL : URL?
The main document URL.
メインドキュメントURL。
Availability 有効性
Technology
var httpBodyStream: InputStream
? { get set }
The request body of the receiver will be this input stream. The entire contents of the stream will be sent as the body, as in an HTTP POST
request. The input stream should be unopened and the receiver will take over as the stream’s delegate.
レシーバの要請本文は、この入力ストリームです。ストリームの全内容は、本文として送られます、HTTP POST
要請でのように。入力ストリームは開かれないべきです、そしてレシーバはストリームのもつ委任先として引き継ぐでしょう。
Setting a body stream clears any data in http
. These values are mutually exclusive.
本文ストリームを設定することは、http
の中のあらゆるデータを消去します。これらの値は相互に排他的です。
var httpMethod : String
var url: URL?
var httpBody : Data?
var mainDocumentURL : URL?