WebClient.UploadValues メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した URI を持つリソースに名前/値コレクションをアップロードします。
オーバーロード
UploadValues(String, NameValueCollection) |
指定した名前/値コレクションを、指定した URI で識別されるリソースにアップロードします。 |
UploadValues(Uri, NameValueCollection) |
指定した名前/値コレクションを、指定した URI で識別されるリソースにアップロードします。 |
UploadValues(String, String, NameValueCollection) |
指定したメソッドを使用して、指定した URI で識別されるリソースに、指定した名前/値のコレクションをアップロードします。 |
UploadValues(Uri, String, NameValueCollection) |
指定したメソッドを使用して、指定した URI で識別されるリソースに、指定した名前/値のコレクションをアップロードします。 |
UploadValues(String, NameValueCollection)
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
指定した名前/値コレクションを、指定した URI で識別されるリソースにアップロードします。
public:
cli::array <System::Byte> ^ UploadValues(System::String ^ address, System::Collections::Specialized::NameValueCollection ^ data);
public byte[] UploadValues (string address, System.Collections.Specialized.NameValueCollection data);
member this.UploadValues : string * System.Collections.Specialized.NameValueCollection -> byte[]
Public Function UploadValues (address As String, data As NameValueCollection) As Byte()
パラメーター
- address
- String
コレクションを受信するリソースの URI。
- data
- NameValueCollection
リソースに送信する NameValueCollection。
戻り値
リソースからの応答の本文を含む Byte 配列。
例外
BaseAddressと address
を組み合わせて形成された URI が無効です。
-又は-
data
は null
です。
-又は-
リソースをホストしているサーバーからの応答はありませんでした。
-又は-
ストリームを開くときにエラーが発生しました。
-又は-
Content-type
ヘッダーが null
または "application/x-www-form-urlencoded" ではありません。
例
次のコード例では、ユーザー (名前、年齢、住所) から情報を収集し、UploadValuesを使用して値をサーバーに投稿します。 サーバーからの応答がコンソールに表示されます。
Console::Write( "\nPlease enter the URI to post data to: " );
String^ uriString = Console::ReadLine();
// Create a new WebClient instance.
WebClient^ myWebClient = gcnew WebClient;
// Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
NameValueCollection^ myNameValueCollection = gcnew NameValueCollection;
Console::WriteLine( "Please enter the following parameters to be posted to the URL" );
Console::Write( "Name: " );
String^ name = Console::ReadLine();
Console::Write( "Age: " );
String^ age = Console::ReadLine();
Console::Write( "Address: " );
String^ address = Console::ReadLine();
// Add necessary parameter/value pairs to the name/value container.
myNameValueCollection->Add( "Name", name );
myNameValueCollection->Add( "Address", address );
myNameValueCollection->Add( "Age", age );
Console::WriteLine( "\nUploading to {0} ...", uriString );
// 'The Upload(String, NameValueCollection)' implicitly method sets HTTP POST as the request method.
array<Byte>^ responseArray = myWebClient->UploadValues( uriString, myNameValueCollection );
// Decode and display the response.
Console::WriteLine( "\nResponse received was :\n {0}", Encoding::ASCII->GetString( responseArray ) );
Console.Write("\nPlease enter the URI to post data to : ");
string uriString = Console.ReadLine();
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
// Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
NameValueCollection myNameValueCollection = new NameValueCollection();
Console.WriteLine("Please enter the following parameters to be posted to the URL");
Console.Write("Name:");
string name = Console.ReadLine();
Console.Write("Age:");
string age = Console.ReadLine();
Console.Write("Address:");
string address = Console.ReadLine();
// Add necessary parameter/value pairs to the name/value container.
myNameValueCollection.Add("Name",name);
myNameValueCollection.Add("Address",address);
myNameValueCollection.Add("Age",age);
Console.WriteLine("\nUploading to {0} ...", uriString);
// 'The Upload(String,NameValueCollection)' implicitly method sets HTTP POST as the request method.
byte[] responseArray = myWebClient.UploadValues(uriString,myNameValueCollection);
// Decode and display the response.
Console.WriteLine("\nResponse received was :\n{0}",Encoding.ASCII.GetString(responseArray));
Console.Write(ControlChars.Cr + "Please enter the URI to post data to : ")
Dim uriString As String = Console.ReadLine()
' Create a new WebClient instance.
Dim myWebClient As New WebClient()
' Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
Dim myNameValueCollection As New NameValueCollection()
Console.WriteLine("Please enter the following parameters to be posted to the URL:")
Console.Write("Name:")
Dim name As String = Console.ReadLine()
Console.Write("Age:")
Dim age As String = Console.ReadLine()
Console.Write("Address:")
Dim address As String = Console.ReadLine()
' Add necessary parameter/value pairs to the name/value container.
myNameValueCollection.Add("Name", name)
myNameValueCollection.Add("Address", address)
myNameValueCollection.Add("Age", age)
Console.WriteLine(ControlChars.Cr + "Uploading to {0} ...", uriString)
' The Upload(String,NameValueCollection)' method implicitly sets the HTTP POST as the request method.
Dim responseArray As Byte() = myWebClient.UploadValues(uriString, myNameValueCollection)
' Decode and display the response.
Console.WriteLine(ControlChars.Cr + "Response received was :" + ControlChars.Cr + "{0}", Encoding.ASCII.GetString(responseArray))
注釈
注意
WebRequest
、HttpWebRequest
、ServicePoint
、WebClient
は廃止されており、新しい開発には使用しないでください。 代わりに HttpClient を使用してください。
UploadValues メソッドは、NameValueCollection をサーバーに送信します。 このメソッドは、データのアップロード中にブロックします。 サーバーの応答の待機中に実行を続けるには、UploadValuesAsync のいずれかのメソッドを使用します。
基になる要求がサーバーによって認識されない場合、基になるプロトコル クラスによって何が発生するかが決まります。 通常、エラーを示すために Status プロパティが設定された WebException がスローされます。
Content-type ヘッダーが null
されている場合、UploadValues メソッドはそれを "application/x-www-form-urlencoded" に設定します。
BaseAddress プロパティが空の文字列 ("") ではなく、address
に絶対 URI が含まれていない場合、address
は、要求されたデータの絶対 URI を形成するために BaseAddress と組み合わせた相対 URI である必要があります。
QueryString プロパティが空の文字列でない場合は、address
に追加されます。
このメソッドでは、STOR コマンドを使用して FTP リソースをアップロードします。 HTTP リソースの場合、POST メソッドが使用されます。
手記
このメンバーは、アプリケーションでネットワーク トレースを有効にすると、トレース情報を出力します。 詳細については、「.NET Frameworkでのネットワーク トレースの
適用対象
UploadValues(Uri, NameValueCollection)
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
指定した名前/値コレクションを、指定した URI で識別されるリソースにアップロードします。
public:
cli::array <System::Byte> ^ UploadValues(Uri ^ address, System::Collections::Specialized::NameValueCollection ^ data);
public byte[] UploadValues (Uri address, System.Collections.Specialized.NameValueCollection data);
member this.UploadValues : Uri * System.Collections.Specialized.NameValueCollection -> byte[]
Public Function UploadValues (address As Uri, data As NameValueCollection) As Byte()
パラメーター
- address
- Uri
コレクションを受信するリソースの URI。
- data
- NameValueCollection
リソースに送信する NameValueCollection。
戻り値
リソースからの応答の本文を含む Byte 配列。
例外
BaseAddressと address
を組み合わせて形成された URI が無効です。
-又は-
data
は null
です。
-又は-
リソースをホストしているサーバーからの応答はありませんでした。
-又は-
ストリームを開くときにエラーが発生しました。
-又は-
Content-type
ヘッダーが null
または "application/x-www-form-urlencoded" ではありません。
注釈
注意
WebRequest
、HttpWebRequest
、ServicePoint
、WebClient
は廃止されており、新しい開発には使用しないでください。 代わりに HttpClient を使用してください。
UploadValues メソッドは、NameValueCollection をサーバーに送信します。 このメソッドは、データのアップロード中にブロックします。 サーバーの応答の待機中に実行を続けるには、UploadValuesAsync のいずれかのメソッドを使用します。
基になる要求がサーバーによって認識されない場合、基になるプロトコル クラスによって何が発生するかが決まります。 通常、エラーを示すために Status プロパティが設定された WebException がスローされます。
Content-type ヘッダーが null
されている場合、UploadValues メソッドはそれを "application/x-www-form-urlencoded" に設定します。
BaseAddress プロパティが空の文字列 ("") ではなく、address
に絶対 URI が含まれていない場合、address
は、要求されたデータの絶対 URI を形成するために BaseAddress と組み合わせた相対 URI である必要があります。
QueryString プロパティが空の文字列でない場合は、address
に追加されます。
このメソッドでは、STOR コマンドを使用して FTP リソースをアップロードします。 HTTP リソースの場合、POST メソッドが使用されます。
手記
このメンバーは、アプリケーションでネットワーク トレースを有効にすると、トレース情報を出力します。 詳細については、「.NET Frameworkでのネットワーク トレースの
適用対象
UploadValues(String, String, NameValueCollection)
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
指定したメソッドを使用して、指定した URI で識別されるリソースに、指定した名前/値のコレクションをアップロードします。
public:
cli::array <System::Byte> ^ UploadValues(System::String ^ address, System::String ^ method, System::Collections::Specialized::NameValueCollection ^ data);
public byte[] UploadValues (string address, string? method, System.Collections.Specialized.NameValueCollection data);
public byte[] UploadValues (string address, string method, System.Collections.Specialized.NameValueCollection data);
member this.UploadValues : string * string * System.Collections.Specialized.NameValueCollection -> byte[]
Public Function UploadValues (address As String, method As String, data As NameValueCollection) As Byte()
パラメーター
- address
- String
コレクションを受信するリソースの URI。
- method
- String
ファイルをリソースに送信するために使用される HTTP メソッド。 null の場合、既定値は HTTP の場合は POST、FTP の場合は STOR です。
- data
- NameValueCollection
リソースに送信する NameValueCollection。
戻り値
リソースからの応答の本文を含む Byte 配列。
例外
BaseAddressと address
を組み合わせて形成された URI が無効です。
-又は-
data
は null
です。
-又は-
ストリームを開くときにエラーが発生しました。
-又は-
リソースをホストしているサーバーからの応答はありませんでした。
-又は-
Content-type
ヘッダー値は null
されず、application/x-www-form-urlencoded
されていません。
例
次のコード例では、ユーザー (名前、年齢、住所) から情報を収集し、UploadValuesを使用して値をサーバーに投稿します。 サーバーからの応答がコンソールに表示されます。
Console::Write( "\nPlease enter the URL to post data to: " );
String^ uriString = Console::ReadLine();
// Create a new WebClient instance.
WebClient^ myWebClient = gcnew WebClient;
// Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
NameValueCollection^ myNameValueCollection = gcnew NameValueCollection;
Console::WriteLine( "Please enter the following parameters to be posted to the URI" );
Console::Write( "Name: " );
String^ name = Console::ReadLine();
Console::Write( "Age: " );
String^ age = Console::ReadLine();
Console::Write( "Address: " );
String^ address = Console::ReadLine();
// Add necessary parameter/value pairs to the name/value container.
myNameValueCollection->Add( "Name", name );
myNameValueCollection->Add( "Address", address );
myNameValueCollection->Add( "Age", age );
Console::WriteLine( "\nUploading to {0} ...", uriString );
// Upload the NameValueCollection.
array<Byte>^ responseArray = myWebClient->UploadValues( uriString, "POST", myNameValueCollection );
// Decode and display the response.
Console::WriteLine( "\nResponse received was :\n {0}", Encoding::ASCII->GetString( responseArray ) );
Console.Write("\nPlease enter the URL to post data to : ");
string uriString = Console.ReadLine();
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
// Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
NameValueCollection myNameValueCollection = new NameValueCollection();
Console.WriteLine("Please enter the following parameters to be posted to the URI");
Console.Write("Name:");
string name = Console.ReadLine();
Console.Write("Age:");
string age = Console.ReadLine();
Console.Write("Address:");
string address = Console.ReadLine();
// Add necessary parameter/value pairs to the name/value container.
myNameValueCollection.Add("Name",name);
myNameValueCollection.Add("Address",address);
myNameValueCollection.Add("Age",age);
Console.WriteLine("\nUploading to {0} ...", uriString);
// Upload the NameValueCollection.
byte[] responseArray = myWebClient.UploadValues(uriString,"POST",myNameValueCollection);
// Decode and display the response.
Console.WriteLine("\nResponse received was :\n{0}",Encoding.ASCII.GetString(responseArray));
Console.Write(ControlChars.Cr + "Please enter the URL to post data to : ")
Dim uriString As String = Console.ReadLine()
' Create a new WebClient instance.
Dim myWebClient As New WebClient()
' Create a new NameValueCollection instance to hold some custom parameters to be posted to the URL.
Dim myNameValueCollection As New NameValueCollection()
Console.WriteLine("Please enter the following parameters to be posted to the Url")
Console.Write("Name:")
Dim name As String = Console.ReadLine()
Console.Write("Age:")
Dim age As String = Console.ReadLine()
Console.Write("Address:")
Dim address As String = Console.ReadLine()
' Add necessary parameter/value pairs to the name/value container.
myNameValueCollection.Add("Name", name)
myNameValueCollection.Add("Address", address)
myNameValueCollection.Add("Age", age)
Console.WriteLine(ControlChars.Cr + "Uploading to {0} ...", uriString)
' Upload the NameValueCollection.
Dim responseArray As Byte() = myWebClient.UploadValues(uriString, "POST", myNameValueCollection)
' Decode and display the response.
Console.WriteLine(ControlChars.Cr + "Response received was :" + ControlChars.Cr + "{0}", Encoding.ASCII.GetString(responseArray))
注釈
注意
WebRequest
、HttpWebRequest
、ServicePoint
、WebClient
は廃止されており、新しい開発には使用しないでください。 代わりに HttpClient を使用してください。
UploadValues メソッドは、method
パラメーターで指定されたメソッドを使用してリソースに NameValueCollection を送信し、サーバーからの応答を返します。 このメソッドは、データのアップロード中にブロックします。 サーバーの応答の待機中に実行を続けるには、UploadValuesAsync のいずれかのメソッドを使用します。
Content-type
ヘッダーが null
されている場合、UploadValues メソッドはそれを application/x-www-form-urlencoded
に設定します。
method
パラメーターがサーバーで認識されない動詞を指定する場合、基になるプロトコル クラスによって何が発生するかが決まります。 通常、エラーを示すために Status プロパティが設定された WebException がスローされます。
BaseAddress プロパティが空の文字列 ("") ではなく、address
に絶対 URI が含まれていない場合、address
は、要求されたデータの絶対 URI を形成するために BaseAddress と組み合わせた相対 URI である必要があります。
QueryString プロパティが空の文字列でない場合は、address
に追加されます。
手記
このメンバーは、アプリケーションでネットワーク トレースを有効にすると、トレース情報を出力します。 詳細については、「.NET Frameworkでのネットワーク トレースの
適用対象
UploadValues(Uri, String, NameValueCollection)
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
- ソース:
- WebClient.cs
指定したメソッドを使用して、指定した URI で識別されるリソースに、指定した名前/値のコレクションをアップロードします。
public:
cli::array <System::Byte> ^ UploadValues(Uri ^ address, System::String ^ method, System::Collections::Specialized::NameValueCollection ^ data);
public byte[] UploadValues (Uri address, string? method, System.Collections.Specialized.NameValueCollection data);
public byte[] UploadValues (Uri address, string method, System.Collections.Specialized.NameValueCollection data);
member this.UploadValues : Uri * string * System.Collections.Specialized.NameValueCollection -> byte[]
Public Function UploadValues (address As Uri, method As String, data As NameValueCollection) As Byte()
パラメーター
- address
- Uri
コレクションを受信するリソースの URI。
- method
- String
ファイルをリソースに送信するために使用される HTTP メソッド。 null の場合、既定値は HTTP の場合は POST、FTP の場合は STOR です。
- data
- NameValueCollection
リソースに送信する NameValueCollection。
戻り値
リソースからの応答の本文を含む Byte 配列。
例外
BaseAddressと address
を組み合わせて形成された URI が無効です。
-又は-
data
は null
です。
-又は-
ストリームを開くときにエラーが発生しました。
-又は-
リソースをホストしているサーバーからの応答はありませんでした。
-又は-
Content-type
ヘッダー値は null
されず、application/x-www-form-urlencoded
されていません。
注釈
注意
WebRequest
、HttpWebRequest
、ServicePoint
、WebClient
は廃止されており、新しい開発には使用しないでください。 代わりに HttpClient を使用してください。
UploadValues メソッドは、method
パラメーターで指定されたメソッドを使用してリソースに NameValueCollection を送信し、サーバーからの応答を返します。 このメソッドは、データのアップロード中にブロックします。 サーバーの応答の待機中に実行を続けるには、UploadValuesAsync のいずれかのメソッドを使用します。
Content-type
ヘッダーが null
されている場合、UploadValues メソッドはそれを application/x-www-form-urlencoded
に設定します。
method
パラメーターがサーバーで認識されない動詞を指定する場合、基になるプロトコル クラスによって何が発生するかが決まります。 通常、エラーを示すために Status プロパティが設定された WebException がスローされます。
BaseAddress プロパティが空の文字列 ("") ではなく、address
に絶対 URI が含まれていない場合、address
は、要求されたデータの絶対 URI を形成するために BaseAddress と組み合わせた相対 URI である必要があります。
QueryString プロパティが空の文字列でない場合は、address
に追加されます。
手記
このメンバーは、アプリケーションでネットワーク トレースを有効にすると、トレース情報を出力します。 詳細については、「.NET Frameworkでのネットワーク トレースの
適用対象
.NET