Class

NSMutableURLRequest

A mutable URL load request that is independent of protocol or URL scheme. 可変URLロード要請、それはプロトコルまたはURLスキームから独立しています。

Declaration 宣言

@interface NSMutableURLRequest : NSURLRequest

Overview 概要

NSMutableURLRequest is a subclass of NSURLRequest that allows you to change the request’s properties. NSMutableURLRequestは、NSURLRequestのサブクラスです、それはあなたにリクエストのもつプロパティを変更させます。

NSMutableURLRequest only represents information about the request. Use other classes, such as NSURLSession, to send the request to a server. See Fetching Website Data into Memory and Uploading Data to a Website for an introduction to these techniques. NSMutableURLRequestは、リクエストについての情報を表すだけです。他のクラス、たとえばNSURLSessionを使って、リクエストをサーバーに送信してください。ウェブサイトデータをメモリへと取ってくるデータをウェブサイトにアップロードするをこれらテクニックに対する導入として見てください。

Classes that create a network operation based on a request make a deep copy of that request. Thus, changing the request after creating a network operation has no effect on the ongoing operation. For example, if you use dataTaskWithRequest:completionHandler: to create a data task from a request, and then later change the request, the data task continues using the original request. リクエストに基づいてあるネットワーク操作を作成するクラスは、そのリクエストの深いコピーを作ります。したがって、ネットワーク操作を作成した後にリクエストを変更することは、進行中の操作に影響しません。例えば、あなたがdataTaskWithRequest:completionHandler:を使ってデータタスクをあるリクエストから作成して、それから後でそのリクエストを変更するならば、データタスクは元のリクエストを使って継続します。

Topics 話題

Working with a Cache Policy キャッシュ方針を扱う

Accessing Request Components 要請構成要素にアクセスする

Accessing Header Fields ヘッダフィールドにアクセスする

Controlling Request Behavior リクエスト挙動を制御する

Supporting Limited Modes 制限モードをサポートする

Accessing the Service Type サービス型にアクセスする

Working with Hotspots ホストポートを扱う

Indicating the Source of the Request リスエストのソースを指し示す

Instance Properties インスタンスプロパティ

Relationships 関係

Inherits From 継承元

See Also 参照

Requests and Responses 要請と応答