Class

NSMutableURLRequest

A mutable URL load request that bridges to NSURLRequest and you use when you need reference semantics or other Foundation-specific behavior. ある可変URLロードリクエスト、それはNSURLRequestにブリッジします、そしあなたが参照意味論や他のFoundation特有の挙動を必要とする場合は使ってください。

Declaration 宣言

class 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 URLSession, 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は、リクエストについての情報を表すだけです。他のクラス、たとえばURLSessionを使って、リクエストをサーバーに送信してください。ウェブサイトデータをメモリへと取ってくるデータをウェブサイトにアップロードするをこれらテクニックに対する導入として見てください。

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 dataTask(with:completionHandler:) to create a data task from a request, and then later change the request, the data task continues using the original request. リクエストに基づいてあるネットワーク操作を作成するクラスは、そのリクエストの深いコピーを作ります。したがって、ネットワーク操作を作成した後にリクエストを変更することは、進行中の操作に影響しません。例えば、あなたがdataTask(with: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 参照

Using Reference Types 参照型を使用する