Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Net.WebClient.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Net.WebClient</name>
5   </assembly>
6   <members>
7     <member name="T:System.Net.DownloadDataCompletedEventArgs">
8       <summary>Provides data for the <see cref="E:System.Net.WebClient.DownloadDataCompleted" /> event.</summary>
9     </member>
10     <member name="P:System.Net.DownloadDataCompletedEventArgs.Result">
11       <summary>Gets the data that is downloaded by a <see cref="Overload:System.Net.WebClient.DownloadDataAsync" /> method.</summary>
12       <returns>A <see cref="T:System.Byte" /> array that contains the downloaded data.</returns>
13     </member>
14     <member name="T:System.Net.DownloadDataCompletedEventHandler">
15       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.DownloadDataCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
16       <param name="sender">The source of the event.</param>
17       <param name="e">A <see cref="T:System.Net.DownloadDataCompletedEventArgs" /> containing event data.</param>
18     </member>
19     <member name="T:System.Net.DownloadProgressChangedEventArgs">
20       <summary>Provides data for the <see cref="E:System.Net.WebClient.DownloadProgressChanged" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
21     </member>
22     <member name="P:System.Net.DownloadProgressChangedEventArgs.BytesReceived">
23       <summary>Gets the number of bytes received.</summary>
24       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes received.</returns>
25     </member>
26     <member name="P:System.Net.DownloadProgressChangedEventArgs.TotalBytesToReceive">
27       <summary>Gets the total number of bytes in a <see cref="T:System.Net.WebClient" /> data download operation.</summary>
28       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes that will be received.</returns>
29     </member>
30     <member name="T:System.Net.DownloadProgressChangedEventHandler">
31       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.DownloadProgressChanged" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
32       <param name="sender">The source of the event.</param>
33       <param name="e">A <see cref="T:System.Net.DownloadProgressChangedEventArgs" /> containing event data.</param>
34     </member>
35     <member name="T:System.Net.DownloadStringCompletedEventArgs">
36       <summary>Provides data for the <see cref="E:System.Net.WebClient.DownloadStringCompleted" /> event.</summary>
37     </member>
38     <member name="P:System.Net.DownloadStringCompletedEventArgs.Result">
39       <summary>Gets the data that is downloaded by a <see cref="Overload:System.Net.WebClient.DownloadStringAsync" /> method.</summary>
40       <returns>A <see cref="T:System.String" /> that contains the downloaded data.</returns>
41     </member>
42     <member name="T:System.Net.DownloadStringCompletedEventHandler">
43       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.DownloadStringCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
44       <param name="sender">The source of the event.</param>
45       <param name="e">A <see cref="T:System.Net.DownloadStringCompletedEventArgs" /> that contains event data.</param>
46     </member>
47     <member name="T:System.Net.OpenReadCompletedEventArgs">
48       <summary>Provides data for the <see cref="E:System.Net.WebClient.OpenReadCompleted" /> event.</summary>
49     </member>
50     <member name="P:System.Net.OpenReadCompletedEventArgs.Result">
51       <summary>Gets a readable stream that contains data downloaded by a <see cref="Overload:System.Net.WebClient.DownloadDataAsync" /> method.</summary>
52       <returns>A <see cref="T:System.IO.Stream" /> that contains the downloaded data.</returns>
53     </member>
54     <member name="T:System.Net.OpenReadCompletedEventHandler">
55       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.OpenReadCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
56       <param name="sender">The source of the event.</param>
57       <param name="e">A <see cref="T:System.Net.OpenReadCompletedEventArgs" /> containing event data.</param>
58     </member>
59     <member name="T:System.Net.OpenWriteCompletedEventArgs">
60       <summary>Provides data for the <see cref="E:System.Net.WebClient.OpenWriteCompleted" /> event.</summary>
61     </member>
62     <member name="P:System.Net.OpenWriteCompletedEventArgs.Result">
63       <summary>Gets a writable stream that is used to send data to a server.</summary>
64       <returns>A <see cref="T:System.IO.Stream" /> where you can write data to be uploaded.</returns>
65     </member>
66     <member name="T:System.Net.OpenWriteCompletedEventHandler">
67       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.OpenWriteCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
68       <param name="sender">The source of the event.</param>
69       <param name="e">A <see cref="T:System.Net.OpenWriteCompletedEventArgs" /> containing event data.</param>
70     </member>
71     <member name="T:System.Net.UploadDataCompletedEventArgs">
72       <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadDataCompleted" /> event.</summary>
73     </member>
74     <member name="P:System.Net.UploadDataCompletedEventArgs.Result">
75       <summary>Gets the server reply to a data upload operation started by calling an <see cref="Overload:System.Net.WebClient.UploadDataAsync" /> method.</summary>
76       <returns>A <see cref="T:System.Byte" /> array containing the server reply.</returns>
77     </member>
78     <member name="T:System.Net.UploadDataCompletedEventHandler">
79       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadDataCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
80       <param name="sender">The source of the event.</param>
81       <param name="e">A <see cref="T:System.Net.UploadDataCompletedEventArgs" /> containing event data.</param>
82     </member>
83     <member name="T:System.Net.UploadFileCompletedEventArgs">
84       <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadFileCompleted" /> event.</summary>
85     </member>
86     <member name="P:System.Net.UploadFileCompletedEventArgs.Result">
87       <summary>Gets the server reply to a data upload operation that is started by calling an <see cref="Overload:System.Net.WebClient.UploadFileAsync" /> method.</summary>
88       <returns>A <see cref="T:System.Byte" /> array that contains the server reply.</returns>
89     </member>
90     <member name="T:System.Net.UploadFileCompletedEventHandler">
91       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadFileCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
92       <param name="sender">The source of the event.</param>
93       <param name="e">A <see cref="T:System.Net.UploadFileCompletedEventArgs" /> that contains event data.</param>
94     </member>
95     <member name="T:System.Net.UploadProgressChangedEventArgs">
96       <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadProgressChanged" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
97     </member>
98     <member name="P:System.Net.UploadProgressChangedEventArgs.BytesReceived">
99       <summary>Gets the number of bytes received.</summary>
100       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes received.</returns>
101     </member>
102     <member name="P:System.Net.UploadProgressChangedEventArgs.BytesSent">
103       <summary>Gets the number of bytes sent.</summary>
104       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes sent.</returns>
105     </member>
106     <member name="P:System.Net.UploadProgressChangedEventArgs.TotalBytesToReceive">
107       <summary>Gets the total number of bytes in a <see cref="T:System.Net.WebClient" /> data upload operation.</summary>
108       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes that will be received.</returns>
109     </member>
110     <member name="P:System.Net.UploadProgressChangedEventArgs.TotalBytesToSend">
111       <summary>Gets the total number of bytes to send.</summary>
112       <returns>An <see cref="T:System.Int64" /> value that indicates the number of bytes that will be sent.</returns>
113     </member>
114     <member name="T:System.Net.UploadProgressChangedEventHandler">
115       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadProgressChanged" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
116       <param name="sender">The source of the event.</param>
117       <param name="e">A <see cref="T:System.Net.UploadProgressChangedEventArgs" /> containing event data.</param>
118     </member>
119     <member name="T:System.Net.UploadStringCompletedEventArgs">
120       <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadStringCompleted" /> event.</summary>
121     </member>
122     <member name="P:System.Net.UploadStringCompletedEventArgs.Result">
123       <summary>Gets the server reply to a string upload operation that is started by calling an <see cref="Overload:System.Net.WebClient.UploadStringAsync" /> method.</summary>
124       <returns>A <see cref="T:System.Byte" /> array that contains the server reply.</returns>
125     </member>
126     <member name="T:System.Net.UploadStringCompletedEventHandler">
127       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadStringCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
128       <param name="sender">The source of the event.</param>
129       <param name="e">A <see cref="T:System.Net.UploadStringCompletedEventArgs" /> containing event data.</param>
130     </member>
131     <member name="T:System.Net.UploadValuesCompletedEventArgs">
132       <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadValuesCompleted" /> event.</summary>
133     </member>
134     <member name="P:System.Net.UploadValuesCompletedEventArgs.Result">
135       <summary>Gets the server reply to a data upload operation started by calling an <see cref="Overload:System.Net.WebClient.UploadValuesAsync" /> method.</summary>
136       <returns>A <see cref="T:System.Byte" /> array containing the server reply.</returns>
137     </member>
138     <member name="T:System.Net.UploadValuesCompletedEventHandler">
139       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadValuesCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
140       <param name="sender">The source of the event.</param>
141       <param name="e">A <see cref="T:System.Net.UploadValuesCompletedEventArgs" /> that contains event data.</param>
142     </member>
143     <member name="T:System.Net.WebClient">
144       <summary>Provides common methods for sending data to and receiving data from a resource identified by a URI.</summary>
145     </member>
146     <member name="M:System.Net.WebClient.#ctor">
147       <summary>Initializes a new instance of the <see cref="T:System.Net.WebClient" /> class.</summary>
148     </member>
149     <member name="P:System.Net.WebClient.AllowReadStreamBuffering">
150       <summary>Gets or sets a value that indicates whether to buffer the data read from the Internet resource for a <see cref="T:System.Net.WebClient" /> instance.</summary>
151       <returns>
152         <see langword="true" /> to enable buffering of the data received from the Internet resource; <see langword="false" /> to disable buffering. The default is <see langword="true" />.</returns>
153     </member>
154     <member name="P:System.Net.WebClient.AllowWriteStreamBuffering">
155       <summary>Gets or sets a value that indicates whether to buffer the data written to the Internet resource for a <see cref="T:System.Net.WebClient" /> instance.</summary>
156       <returns>
157         <see langword="true" /> to enable buffering of the data written to the Internet resource; <see langword="false" /> to disable buffering. The default is <see langword="true" />.</returns>
158     </member>
159     <member name="P:System.Net.WebClient.BaseAddress">
160       <summary>Gets or sets the base URI for requests made by a <see cref="T:System.Net.WebClient" />.</summary>
161       <returns>A <see cref="T:System.String" /> containing the base URI for requests made by a <see cref="T:System.Net.WebClient" /> or <see cref="F:System.String.Empty" /> if no base address has been specified.</returns>
162       <exception cref="T:System.ArgumentException">
163         <see cref="P:System.Net.WebClient.BaseAddress" /> is set to an invalid URI. The inner exception may contain information that will help you locate the error.</exception>
164     </member>
165     <member name="P:System.Net.WebClient.CachePolicy">
166       <summary>Gets or sets the application's cache policy for any resources obtained by this WebClient instance using <see cref="T:System.Net.WebRequest" /> objects.</summary>
167       <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that represents the application's caching requirements.</returns>
168     </member>
169     <member name="M:System.Net.WebClient.CancelAsync">
170       <summary>Cancels a pending asynchronous operation.</summary>
171     </member>
172     <member name="P:System.Net.WebClient.Credentials">
173       <summary>Gets or sets the network credentials that are sent to the host and used to authenticate the request.</summary>
174       <returns>An <see cref="T:System.Net.ICredentials" /> containing the authentication credentials for the request. The default is <see langword="null" />.</returns>
175     </member>
176     <member name="M:System.Net.WebClient.DownloadData(System.String)">
177       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
178       <param name="address">The URI from which to download data.</param>
179       <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
180       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
181       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
182 -or-
183 An error occurred while downloading data.</exception>
184       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
185     </member>
186     <member name="M:System.Net.WebClient.DownloadData(System.Uri)">
187       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
188       <param name="address">The URI represented by the <see cref="T:System.Uri" /> object, from which to download data.</param>
189       <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
190       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
191     </member>
192     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri)">
193       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
194       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
195       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
196       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
197 -or-
198 An error occurred while downloading the resource.</exception>
199     </member>
200     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri,System.Object)">
201       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
202       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
203       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
204       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
205       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
206 -or-
207 An error occurred while downloading the resource.</exception>
208     </member>
209     <member name="E:System.Net.WebClient.DownloadDataCompleted">
210       <summary>Occurs when an asynchronous data download operation completes.</summary>
211     </member>
212     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.String)">
213       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation using a task object.</summary>
214       <param name="address">The URI of the resource to download.</param>
215       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
216       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
217       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
218 -or-
219 An error occurred while downloading the resource.</exception>
220     </member>
221     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.Uri)">
222       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation using a task object.</summary>
223       <param name="address">The URI of the resource to download.</param>
224       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
225       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
226       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
227 -or-
228 An error occurred while downloading the resource.</exception>
229     </member>
230     <member name="M:System.Net.WebClient.DownloadFile(System.String,System.String)">
231       <summary>Downloads the resource with the specified URI to a local file.</summary>
232       <param name="address">The URI from which to download data.</param>
233       <param name="fileName">The name of the local file that is to receive the data.</param>
234       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
235       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
236 -or-
237 <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
238 -or-
239 The file does not exist.
240 -or- An error occurred while downloading data.</exception>
241       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
242     </member>
243     <member name="M:System.Net.WebClient.DownloadFile(System.Uri,System.String)">
244       <summary>Downloads the resource with the specified URI to a local file.</summary>
245       <param name="address">The URI specified as a <see cref="T:System.String" />, from which to download data.</param>
246       <param name="fileName">The name of the local file that is to receive the data.</param>
247       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
248 -or-
249 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
250       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
251 -or-
252 <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
253 -or-
254 The file does not exist.
255 -or-
256 An error occurred while downloading data.</exception>
257       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
258     </member>
259     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String)">
260       <summary>Downloads, to a local file, the resource with the specified URI. This method does not block the calling thread.</summary>
261       <param name="address">The URI of the resource to download.</param>
262       <param name="fileName">The name of the file to be placed on the local computer.</param>
263       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
264 -or-
265 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
266       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
267 -or-
268 An error occurred while downloading the resource.</exception>
269       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
270     </member>
271     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String,System.Object)">
272       <summary>Downloads, to a local file, the resource with the specified URI. This method does not block the calling thread.</summary>
273       <param name="address">The URI of the resource to download.</param>
274       <param name="fileName">The name of the file to be placed on the local computer.</param>
275       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
276       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
277 -or-
278 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
279       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
280 -or-
281 An error occurred while downloading the resource.</exception>
282       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
283     </member>
284     <member name="E:System.Net.WebClient.DownloadFileCompleted">
285       <summary>Occurs when an asynchronous file download operation completes.</summary>
286     </member>
287     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.String,System.String)">
288       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
289       <param name="address">The URI of the resource to download.</param>
290       <param name="fileName">The name of the file to be placed on the local computer.</param>
291       <returns>The task object representing the asynchronous operation.</returns>
292       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
293 -or-
294 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
295       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
296 -or-
297 An error occurred while downloading the resource.</exception>
298       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
299     </member>
300     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.Uri,System.String)">
301       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
302       <param name="address">The URI of the resource to download.</param>
303       <param name="fileName">The name of the file to be placed on the local computer.</param>
304       <returns>The task object representing the asynchronous operation.</returns>
305       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
306 -or-
307 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
308       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
309 -or-
310 An error occurred while downloading the resource.</exception>
311       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
312     </member>
313     <member name="E:System.Net.WebClient.DownloadProgressChanged">
314       <summary>Occurs when an asynchronous download operation successfully transfers some or all of the data.</summary>
315     </member>
316     <member name="M:System.Net.WebClient.DownloadString(System.String)">
317       <summary>Downloads the requested resource as a <see cref="T:System.String" />. The resource to download is specified as a <see cref="T:System.String" /> containing the URI.</summary>
318       <param name="address">A <see cref="T:System.String" /> containing the URI to download.</param>
319       <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
320       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
321       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
322 -or-
323 An error occurred while downloading the resource.</exception>
324       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
325     </member>
326     <member name="M:System.Net.WebClient.DownloadString(System.Uri)">
327       <summary>Downloads the requested resource as a <see cref="T:System.String" />. The resource to download is specified as a <see cref="T:System.Uri" />.</summary>
328       <param name="address">A <see cref="T:System.Uri" /> object containing the URI to download.</param>
329       <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
330       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
331       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
332 -or-
333 An error occurred while downloading the resource.</exception>
334       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
335     </member>
336     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri)">
337       <summary>Downloads the resource specified as a <see cref="T:System.Uri" />. This method does not block the calling thread.</summary>
338       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
339       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
340       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
341 -or-
342 An error occurred while downloading the resource.</exception>
343     </member>
344     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri,System.Object)">
345       <summary>Downloads the specified string to the specified resource. This method does not block the calling thread.</summary>
346       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
347       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
348       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
349       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
350 -or-
351 An error occurred while downloading the resource.</exception>
352     </member>
353     <member name="E:System.Net.WebClient.DownloadStringCompleted">
354       <summary>Occurs when an asynchronous resource-download operation completes.</summary>
355     </member>
356     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.String)">
357       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
358       <param name="address">The URI of the resource to download.</param>
359       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
360       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
361       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
362 -or-
363 An error occurred while downloading the resource.</exception>
364     </member>
365     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.Uri)">
366       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
367       <param name="address">The URI of the resource to download.</param>
368       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
369       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
370       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
371 -or-
372 An error occurred while downloading the resource.</exception>
373     </member>
374     <member name="P:System.Net.WebClient.Encoding">
375       <summary>Gets or sets the <see cref="T:System.Text.Encoding" /> used to upload and download strings.</summary>
376       <returns>A <see cref="T:System.Text.Encoding" /> that is used to encode strings. The default value of this property is the encoding returned by <see cref="P:System.Text.Encoding.Default" />.</returns>
377     </member>
378     <member name="M:System.Net.WebClient.GetWebRequest(System.Uri)">
379       <summary>Returns a <see cref="T:System.Net.WebRequest" /> object for the specified resource.</summary>
380       <param name="address">A <see cref="T:System.Uri" /> that identifies the resource to request.</param>
381       <returns>A new <see cref="T:System.Net.WebRequest" /> object for the specified resource.</returns>
382     </member>
383     <member name="M:System.Net.WebClient.GetWebResponse(System.Net.WebRequest)">
384       <summary>Returns the <see cref="T:System.Net.WebResponse" /> for the specified <see cref="T:System.Net.WebRequest" />.</summary>
385       <param name="request">A <see cref="T:System.Net.WebRequest" /> that is used to obtain the response.</param>
386       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response for the specified <see cref="T:System.Net.WebRequest" />.</returns>
387     </member>
388     <member name="M:System.Net.WebClient.GetWebResponse(System.Net.WebRequest,System.IAsyncResult)">
389       <summary>Returns the <see cref="T:System.Net.WebResponse" /> for the specified <see cref="T:System.Net.WebRequest" /> using the specified <see cref="T:System.IAsyncResult" />.</summary>
390       <param name="request">A <see cref="T:System.Net.WebRequest" /> that is used to obtain the response.</param>
391       <param name="result">An <see cref="T:System.IAsyncResult" /> object obtained from a previous call to <see cref="M:System.Net.WebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> .</param>
392       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response for the specified <see cref="T:System.Net.WebRequest" />.</returns>
393     </member>
394     <member name="P:System.Net.WebClient.Headers">
395       <summary>Gets or sets a collection of header name/value pairs associated with the request.</summary>
396       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing header name/value pairs associated with this request.</returns>
397     </member>
398     <member name="P:System.Net.WebClient.IsBusy">
399       <summary>Gets whether a Web request is in progress.</summary>
400       <returns>
401         <see langword="true" /> if the Web request is still in progress; otherwise <see langword="false" />.</returns>
402     </member>
403     <member name="M:System.Net.WebClient.OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs)">
404       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadDataCompleted" /> event.</summary>
405       <param name="e">A <see cref="T:System.Net.DownloadDataCompletedEventArgs" /> object that contains event data.</param>
406     </member>
407     <member name="M:System.Net.WebClient.OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs)">
408       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadFileCompleted" /> event.</summary>
409       <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> object containing event data.</param>
410     </member>
411     <member name="M:System.Net.WebClient.OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs)">
412       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadProgressChanged" /> event.</summary>
413       <param name="e">A <see cref="T:System.Net.DownloadProgressChangedEventArgs" /> object containing event data.</param>
414     </member>
415     <member name="M:System.Net.WebClient.OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs)">
416       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadStringCompleted" /> event.</summary>
417       <param name="e">A <see cref="T:System.Net.DownloadStringCompletedEventArgs" /> object containing event data.</param>
418     </member>
419     <member name="M:System.Net.WebClient.OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs)">
420       <summary>Raises the <see cref="E:System.Net.WebClient.OpenReadCompleted" /> event.</summary>
421       <param name="e">A <see cref="T:System.Net.OpenReadCompletedEventArgs" /> object containing event data.</param>
422     </member>
423     <member name="M:System.Net.WebClient.OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs)">
424       <summary>Raises the <see cref="E:System.Net.WebClient.OpenWriteCompleted" /> event.</summary>
425       <param name="e">A <see cref="T:System.Net.OpenWriteCompletedEventArgs" /> object containing event data.</param>
426     </member>
427     <member name="M:System.Net.WebClient.OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs)">
428       <summary>Raises the <see cref="E:System.Net.WebClient.UploadDataCompleted" /> event.</summary>
429       <param name="e">A <see cref="T:System.Net.UploadDataCompletedEventArgs" /> object containing event data.</param>
430     </member>
431     <member name="M:System.Net.WebClient.OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs)">
432       <summary>Raises the <see cref="E:System.Net.WebClient.UploadFileCompleted" /> event.</summary>
433       <param name="e">An <see cref="T:System.Net.UploadFileCompletedEventArgs" /> object containing event data.</param>
434     </member>
435     <member name="M:System.Net.WebClient.OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs)">
436       <summary>Raises the <see cref="E:System.Net.WebClient.UploadProgressChanged" /> event.</summary>
437       <param name="e">An <see cref="T:System.Net.UploadProgressChangedEventArgs" /> object containing event data.</param>
438     </member>
439     <member name="M:System.Net.WebClient.OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs)">
440       <summary>Raises the <see cref="E:System.Net.WebClient.UploadStringCompleted" /> event.</summary>
441       <param name="e">An <see cref="T:System.Net.UploadStringCompletedEventArgs" /> object containing event data.</param>
442     </member>
443     <member name="M:System.Net.WebClient.OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs)">
444       <summary>Raises the <see cref="E:System.Net.WebClient.UploadValuesCompleted" /> event.</summary>
445       <param name="e">A <see cref="T:System.Net.UploadValuesCompletedEventArgs" /> object containing event data.</param>
446     </member>
447     <member name="M:System.Net.WebClient.OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs)">
448       <summary>Raises the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event.</summary>
449       <param name="e">A <see cref="T:System.Net.WriteStreamClosedEventArgs" /> object containing event data.</param>
450     </member>
451     <member name="M:System.Net.WebClient.OpenRead(System.String)">
452       <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.String" />.</summary>
453       <param name="address">The URI specified as a <see cref="T:System.String" /> from which to download data.</param>
454       <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
455       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
456       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
457 -or-
458 An error occurred while downloading data.</exception>
459     </member>
460     <member name="M:System.Net.WebClient.OpenRead(System.Uri)">
461       <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.Uri" /></summary>
462       <param name="address">The URI specified as a <see cref="T:System.Uri" /> from which to download data.</param>
463       <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
464       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
465       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
466 -or-
467 An error occurred while downloading data.</exception>
468     </member>
469     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri)">
470       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
471       <param name="address">The URI of the resource to retrieve.</param>
472       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
473       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
474 -or-
475 An error occurred while downloading the resource.
476 -or-
477 An error occurred while opening the stream.</exception>
478     </member>
479     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri,System.Object)">
480       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
481       <param name="address">The URI of the resource to retrieve.</param>
482       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
483       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
484       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
485 -or-
486 An error occurred while downloading the resource.
487 -or-
488 An error occurred while opening the stream.</exception>
489     </member>
490     <member name="E:System.Net.WebClient.OpenReadCompleted">
491       <summary>Occurs when an asynchronous operation to open a stream containing a resource completes.</summary>
492     </member>
493     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.String)">
494       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
495       <param name="address">The URI of the resource to retrieve.</param>
496       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
497       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
498       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
499 -or-
500 An error occurred while downloading the resource.
501 -or-
502 An error occurred while opening the stream.</exception>
503     </member>
504     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.Uri)">
505       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
506       <param name="address">The URI of the resource to retrieve.</param>
507       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
508       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
509       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
510 -or-
511 An error occurred while downloading the resource.
512 -or-
513 An error occurred while opening the stream.</exception>
514     </member>
515     <member name="M:System.Net.WebClient.OpenWrite(System.String)">
516       <summary>Opens a stream for writing data to the specified resource.</summary>
517       <param name="address">The URI of the resource to receive the data.</param>
518       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
519       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
520       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
521 -or-
522 An error occurred while opening the stream.</exception>
523     </member>
524     <member name="M:System.Net.WebClient.OpenWrite(System.String,System.String)">
525       <summary>Opens a stream for writing data to the specified resource, using the specified method.</summary>
526       <param name="address">The URI of the resource to receive the data.</param>
527       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
528       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
529       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
530       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
531 -or-
532 An error occurred while opening the stream.</exception>
533     </member>
534     <member name="M:System.Net.WebClient.OpenWrite(System.Uri)">
535       <summary>Opens a stream for writing data to the specified resource.</summary>
536       <param name="address">The URI of the resource to receive the data.</param>
537       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
538       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
539       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
540 -or-
541 An error occurred while opening the stream.</exception>
542     </member>
543     <member name="M:System.Net.WebClient.OpenWrite(System.Uri,System.String)">
544       <summary>Opens a stream for writing data to the specified resource, by using the specified method.</summary>
545       <param name="address">The URI of the resource to receive the data.</param>
546       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
547       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
548       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
549       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
550 -or-
551 An error occurred while opening the stream.</exception>
552     </member>
553     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri)">
554       <summary>Opens a stream for writing data to the specified resource. This method does not block the calling thread.</summary>
555       <param name="address">The URI of the resource to receive the data.</param>
556       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
557     </member>
558     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri,System.String)">
559       <summary>Opens a stream for writing data to the specified resource. This method does not block the calling thread.</summary>
560       <param name="address">The URI of the resource to receive the data.</param>
561       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
562       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
563     </member>
564     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri,System.String,System.Object)">
565       <summary>Opens a stream for writing data to the specified resource, using the specified method. This method does not block the calling thread.</summary>
566       <param name="address">The URI of the resource to receive the data.</param>
567       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
568       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes</param>
569       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
570       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
571 -or-
572 An error occurred while opening the stream.</exception>
573     </member>
574     <member name="E:System.Net.WebClient.OpenWriteCompleted">
575       <summary>Occurs when an asynchronous operation to open a stream to write data to a resource completes.</summary>
576     </member>
577     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String)">
578       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
579       <param name="address">The URI of the resource to receive the data.</param>
580       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
581       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
582       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
583 -or-
584 An error occurred while opening the stream.</exception>
585     </member>
586     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String,System.String)">
587       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
588       <param name="address">The URI of the resource to receive the data.</param>
589       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
590       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
591       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
592       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
593 -or-
594 An error occurred while opening the stream.</exception>
595     </member>
596     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri)">
597       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
598       <param name="address">The URI of the resource to receive the data.</param>
599       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
600       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
601       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
602 -or-
603 An error occurred while opening the stream.</exception>
604     </member>
605     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri,System.String)">
606       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
607       <param name="address">The URI of the resource to receive the data.</param>
608       <param name="method">The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
609       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
610       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
611       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
612 -or-
613 An error occurred while opening the stream.</exception>
614     </member>
615     <member name="P:System.Net.WebClient.Proxy">
616       <summary>Gets or sets the proxy used by this <see cref="T:System.Net.WebClient" /> object.</summary>
617       <returns>An <see cref="T:System.Net.IWebProxy" /> instance used to send requests.</returns>
618       <exception cref="T:System.ArgumentNullException">
619         <see cref="P:System.Net.WebClient.Proxy" /> is set to <see langword="null" />.</exception>
620     </member>
621     <member name="P:System.Net.WebClient.QueryString">
622       <summary>Gets or sets a collection of query name/value pairs associated with the request.</summary>
623       <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> that contains query name/value pairs associated with the request. If no pairs are associated with the request, the value is an empty <see cref="T:System.Collections.Specialized.NameValueCollection" />.</returns>
624     </member>
625     <member name="P:System.Net.WebClient.ResponseHeaders">
626       <summary>Gets a collection of header name/value pairs associated with the response.</summary>
627       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing header name/value pairs associated with the response, or <see langword="null" /> if no response has been received.</returns>
628     </member>
629     <member name="M:System.Net.WebClient.UploadData(System.String,System.Byte[])">
630       <summary>Uploads a data buffer to a resource identified by a URI.</summary>
631       <param name="address">The URI of the resource to receive the data.</param>
632       <param name="data">The data buffer to send to the resource.</param>
633       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
634       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
635       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
636 -or-
637 <paramref name="data" /> is <see langword="null" />.
638 -or-
639 An error occurred while sending the data.
640 -or-
641 There was no response from the server hosting the resource.</exception>
642     </member>
643     <member name="M:System.Net.WebClient.UploadData(System.String,System.String,System.Byte[])">
644       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
645       <param name="address">The URI of the resource to receive the data.</param>
646       <param name="method">The HTTP method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
647       <param name="data">The data buffer to send to the resource.</param>
648       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
649       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
650       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
651 -or-
652 <paramref name="data" /> is <see langword="null" />.
653 -or-
654 An error occurred while uploading the data.
655 -or-
656 There was no response from the server hosting the resource.</exception>
657     </member>
658     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.Byte[])">
659       <summary>Uploads a data buffer to a resource identified by a URI.</summary>
660       <param name="address">The URI of the resource to receive the data.</param>
661       <param name="data">The data buffer to send to the resource.</param>
662       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
663       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
664       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
665 -or-
666 <paramref name="data" /> is <see langword="null" />.
667 -or-
668 An error occurred while sending the data.
669 -or-
670 There was no response from the server hosting the resource.</exception>
671     </member>
672     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.String,System.Byte[])">
673       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
674       <param name="address">The URI of the resource to receive the data.</param>
675       <param name="method">The HTTP method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.</param>
676       <param name="data">The data buffer to send to the resource.</param>
677       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
678       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
679       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
680 -or-
681 <paramref name="data" /> is <see langword="null" />.
682 -or-
683 An error occurred while uploading the data.
684 -or-
685 There was no response from the server hosting the resource.</exception>
686     </member>
687     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.Byte[])">
688       <summary>Uploads a data buffer to a resource identified by a URI, using the POST method. This method does not block the calling thread.</summary>
689       <param name="address">The URI of the resource to receive the data.</param>
690       <param name="data">The data buffer to send to the resource.</param>
691       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
692       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
693 -or-
694 An error occurred while opening the stream.
695 -or-
696 There was no response from the server hosting the resource.</exception>
697     </member>
698     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[])">
699       <summary>Uploads a data buffer to a resource identified by a URI, using the specified method. This method does not block the calling thread.</summary>
700       <param name="address">The URI of the resource to receive the data.</param>
701       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
702       <param name="data">The data buffer to send to the resource.</param>
703       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
704       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
705 -or-
706 An error occurred while opening the stream.
707 -or-
708 There was no response from the server hosting the resource.</exception>
709     </member>
710     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[],System.Object)">
711       <summary>Uploads a data buffer to a resource identified by a URI, using the specified method and identifying token.</summary>
712       <param name="address">The URI of the resource to receive the data.</param>
713       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
714       <param name="data">The data buffer to send to the resource.</param>
715       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
716       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
717       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
718 -or-
719 An error occurred while opening the stream.
720 -or-
721 There was no response from the server hosting the resource.</exception>
722     </member>
723     <member name="E:System.Net.WebClient.UploadDataCompleted">
724       <summary>Occurs when an asynchronous data-upload operation completes.</summary>
725     </member>
726     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.Byte[])">
727       <summary>Uploads a data buffer that contains a <see cref="T:System.Byte" /> array to the URI specified as an asynchronous operation using a task object.</summary>
728       <param name="address">The URI of the resource to receive the data.</param>
729       <param name="data">The data buffer to send to the resource.</param>
730       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the data buffer was uploaded.</returns>
731       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
732       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
733 -or-
734 An error occurred while opening the stream.
735 -or-
736 There was no response from the server hosting the resource.</exception>
737     </member>
738     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.String,System.Byte[])">
739       <summary>Uploads a data buffer that contains a <see cref="T:System.Byte" /> array to the URI specified as an asynchronous operation using a task object.</summary>
740       <param name="address">The URI of the resource to receive the data.</param>
741       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
742       <param name="data">The data buffer to send to the resource.</param>
743       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the data buffer was uploaded.</returns>
744       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
745       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
746 -or-
747 An error occurred while opening the stream.
748 -or-
749 There was no response from the server hosting the resource.</exception>
750     </member>
751     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.Byte[])">
752       <summary>Uploads a data buffer that contains a <see cref="T:System.Byte" /> array to the URI specified as an asynchronous operation using a task object.</summary>
753       <param name="address">The URI of the resource to receive the data.</param>
754       <param name="data">The data buffer to send to the resource.</param>
755       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the data buffer was uploaded.</returns>
756       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
757       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
758 -or-
759 An error occurred while opening the stream.
760 -or-
761 There was no response from the server hosting the resource.</exception>
762     </member>
763     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.String,System.Byte[])">
764       <summary>Uploads a data buffer that contains a <see cref="T:System.Byte" /> array to the URI specified as an asynchronous operation using a task object.</summary>
765       <param name="address">The URI of the resource to receive the data.</param>
766       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
767       <param name="data">The data buffer to send to the resource.</param>
768       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the data buffer was uploaded.</returns>
769       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
770       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
771 -or-
772 An error occurred while opening the stream.
773 -or-
774 There was no response from the server hosting the resource.</exception>
775     </member>
776     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String)">
777       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
778       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
779       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
780       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
781       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
782 -or-
783 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
784       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
785 -or-
786 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
787 -or-
788 An error occurred while uploading the file.
789 -or-
790 There was no response from the server hosting the resource.
791 -or-
792 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
793     </member>
794     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String,System.String)">
795       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
796       <param name="address">The URI of the resource to receive the file.</param>
797       <param name="method">The method used to send the file to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
798       <param name="fileName">The file to send to the resource.</param>
799       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
800       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
801 -or-
802 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
803       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
804 -or-
805 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
806 -or-
807 An error occurred while uploading the file.
808 -or-
809 There was no response from the server hosting the resource.
810 -or-
811 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
812     </member>
813     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String)">
814       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
815       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
816       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
817       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
818       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
819 -or-
820 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
821       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
822 -or-
823 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
824 -or-
825 An error occurred while uploading the file.
826 -or-
827 There was no response from the server hosting the resource.
828 -or-
829 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
830     </member>
831     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String,System.String)">
832       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
833       <param name="address">The URI of the resource to receive the file.</param>
834       <param name="method">The method used to send the file to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
835       <param name="fileName">The file to send to the resource.</param>
836       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
837       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
838 -or-
839 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
840       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
841 -or-
842 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
843 -or-
844 An error occurred while uploading the file.
845 -or-
846 There was no response from the server hosting the resource.
847 -or-
848 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
849     </member>
850     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String)">
851       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
852       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
853       <param name="fileName">The file to send to the resource.</param>
854       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
855 -or-
856 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
857       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
858 -or-
859 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
860 -or-
861 An error occurred while opening the stream.
862 -or-
863 There was no response from the server hosting the resource.
864 -or-
865 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
866     </member>
867     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String)">
868       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
869       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
870       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
871       <param name="fileName">The file to send to the resource.</param>
872       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
873 -or-
874 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
875       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
876 -or-
877 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
878 -or-
879 An error occurred while opening the stream.
880 -or-
881 There was no response from the server hosting the resource.
882 -or-
883 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
884     </member>
885     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String,System.Object)">
886       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
887       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
888       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
889       <param name="fileName">The file to send to the resource.</param>
890       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
891       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
892 -or-
893 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
894       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
895 -or-
896 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
897 -or-
898 An error occurred while opening the stream.
899 -or-
900 There was no response from the server hosting the resource.
901 -or-
902 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
903     </member>
904     <member name="E:System.Net.WebClient.UploadFileCompleted">
905       <summary>Occurs when an asynchronous file-upload operation completes.</summary>
906     </member>
907     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String)">
908       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
909       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
910       <param name="fileName">The local file to send to the resource.</param>
911       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the file was uploaded.</returns>
912       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
913 -or-
914 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
915       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
916 -or-
917 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
918 -or-
919 An error occurred while opening the stream.
920 -or-
921 There was no response from the server hosting the resource.
922 -or-
923 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
924     </member>
925     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String,System.String)">
926       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
927       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
928       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
929       <param name="fileName">The local file to send to the resource.</param>
930       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the file was uploaded.</returns>
931       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
932 -or-
933 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
934       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
935 -or-
936 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
937 -or-
938 An error occurred while opening the stream.
939 -or-
940 There was no response from the server hosting the resource.
941 -or-
942 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
943     </member>
944     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String)">
945       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
946       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
947       <param name="fileName">The local file to send to the resource.</param>
948       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the file was uploaded.</returns>
949       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
950 -or-
951 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
952       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
953 -or-
954 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
955 -or-
956 An error occurred while opening the stream.
957 -or-
958 There was no response from the server hosting the resource.
959 -or-
960 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
961     </member>
962     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String,System.String)">
963       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
964       <param name="address">The URI of the resource to receive the file. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
965       <param name="method">The method used to send the data to the resource. If <see langword="null" />, the default is POST for http and STOR for ftp.</param>
966       <param name="fileName">The local file to send to the resource.</param>
967       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the body of the response received from the resource when the file was uploaded.</returns>
968       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
969 -or-
970 The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
971       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
972 -or-
973 <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid character, or the specified path to the file does not exist.
974 -or-
975 An error occurred while opening the stream.
976 -or-
977 There was no response from the server hosting the resource.
978 -or-
979 The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
980     </member>
981     <member name="E:System.Net.WebClient.UploadProgressChanged">
982       <summary>Occurs when an asynchronous upload operation successfully transfers some or all of the data.</summary>
983     </member>
984     <member name="M:System.Net.WebClient.UploadString(System.String,System.String)">
985       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
986       <param name="address">The URI of the resource to receive the string. For Http resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
987       <param name="data">The string to be uploaded.</param>
988       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
989       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
990 -or-
991 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
992       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
993 -or-
994 There was no response from the server hosting the resource.</exception>
995     </member>
996     <member name="M:System.Net.WebClient.UploadString(System.String,System.String,System.String)">
997       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
998       <param name="address">The URI of the resource to receive the string. This URI must identify a resource that can accept a request sent with the <paramref name="method" /> method.</param>
999       <param name="method">The HTTP method used to send the string to the resource. If null, the default is POST for http and STOR for ftp.</param>
1000       <param name="data">The string to be uploaded.</param>
1001       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1002       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1003 -or-
1004 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1005       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1006 -or-
1007 There was no response from the server hosting the resource.
1008 -or-
1009 <paramref name="method" /> cannot be used to send content.</exception>
1010     </member>
1011     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String)">
1012       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
1013       <param name="address">The URI of the resource to receive the string. For Http resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1014       <param name="data">The string to be uploaded.</param>
1015       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1016       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1017 -or-
1018 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1019       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1020 -or-
1021 There was no response from the server hosting the resource.</exception>
1022     </member>
1023     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String,System.String)">
1024       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
1025       <param name="address">The URI of the resource to receive the string. This URI must identify a resource that can accept a request sent with the <paramref name="method" /> method.</param>
1026       <param name="method">The HTTP method used to send the string to the resource. If null, the default is POST for http and STOR for ftp.</param>
1027       <param name="data">The string to be uploaded.</param>
1028       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1029       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1030 -or-
1031 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1032       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1033 -or-
1034 There was no response from the server hosting the resource.
1035 -or-
1036 <paramref name="method" /> cannot be used to send content.</exception>
1037     </member>
1038     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String)">
1039       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1040       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1041       <param name="data">The string to be uploaded.</param>
1042       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1043 -or-
1044 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1045       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1046 -or-
1047 There was no response from the server hosting the resource.</exception>
1048     </member>
1049     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String)">
1050       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1051       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1052       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1053       <param name="data">The string to be uploaded.</param>
1054       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1055 -or-
1056 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1057       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1058 -or-
1059 <paramref name="method" /> cannot be used to send content.
1060 -or-
1061 There was no response from the server hosting the resource.</exception>
1062     </member>
1063     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String,System.Object)">
1064       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1065       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1066       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1067       <param name="data">The string to be uploaded.</param>
1068       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
1069       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1070 -or-
1071 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1072       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1073 -or-
1074 <paramref name="method" /> cannot be used to send content.
1075 -or-
1076 There was no response from the server hosting the resource.</exception>
1077     </member>
1078     <member name="E:System.Net.WebClient.UploadStringCompleted">
1079       <summary>Occurs when an asynchronous string-upload operation completes.</summary>
1080     </member>
1081     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String)">
1082       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1083       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1084       <param name="data">The string to be uploaded.</param>
1085       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.String" /> containing the response sent by the server.</returns>
1086       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1087 -or-
1088 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1089       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1090 -or-
1091 There was no response from the server hosting the resource.</exception>
1092     </member>
1093     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String,System.String)">
1094       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1095       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1096       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1097       <param name="data">The string to be uploaded.</param>
1098       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.String" /> containing the response sent by the server.</returns>
1099       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1100 -or-
1101 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1102       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1103 -or-
1104 <paramref name="method" /> cannot be used to send content.
1105 -or-
1106 There was no response from the server hosting the resource.</exception>
1107     </member>
1108     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String)">
1109       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1110       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1111       <param name="data">The string to be uploaded.</param>
1112       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.String" /> containing the response sent by the server.</returns>
1113       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1114 -or-
1115 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1116       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1117 -or-
1118 There was no response from the server hosting the resource.</exception>
1119     </member>
1120     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String,System.String)">
1121       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1122       <param name="address">The URI of the resource to receive the string. For HTTP resources, this URI must identify a resource that can accept a request sent with the POST method, such as a script or ASP page.</param>
1123       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1124       <param name="data">The string to be uploaded.</param>
1125       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.String" /> containing the response sent by the server.</returns>
1126       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1127 -or-
1128 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1129       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1130 -or-
1131 <paramref name="method" /> cannot be used to send content.
1132 -or-
1133 There was no response from the server hosting the resource.</exception>
1134     </member>
1135     <member name="M:System.Net.WebClient.UploadValues(System.String,System.Collections.Specialized.NameValueCollection)">
1136       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
1137       <param name="address">The URI of the resource to receive the collection.</param>
1138       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1139       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1140       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1141 -or-
1142 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1143       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1144 -or-
1145 <paramref name="data" /> is <see langword="null" />.
1146 -or-
1147 There was no response from the server hosting the resource.
1148 -or-
1149 An error occurred while opening the stream.
1150 -or-
1151 The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1152     </member>
1153     <member name="M:System.Net.WebClient.UploadValues(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
1154       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
1155       <param name="address">The URI of the resource to receive the collection.</param>
1156       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1157       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1158       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1159       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1160 -or-
1161 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1162       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1163 -or-
1164 <paramref name="data" /> is <see langword="null" />.
1165 -or-
1166 An error occurred while opening the stream.
1167 -or-
1168 There was no response from the server hosting the resource.
1169 -or-
1170 The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1171     </member>
1172     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.Collections.Specialized.NameValueCollection)">
1173       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
1174       <param name="address">The URI of the resource to receive the collection.</param>
1175       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1176       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1177       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1178 -or-
1179 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1180       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1181 -or-
1182 <paramref name="data" /> is <see langword="null" />.
1183 -or-
1184 There was no response from the server hosting the resource.
1185 -or-
1186 An error occurred while opening the stream.
1187 -or-
1188 The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1189     </member>
1190     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1191       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
1192       <param name="address">The URI of the resource to receive the collection.</param>
1193       <param name="method">The HTTP method used to send the file to the resource. If null, the default is POST for http and STOR for ftp.</param>
1194       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1195       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1196       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1197 -or-
1198 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1199       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1200 -or-
1201 <paramref name="data" /> is <see langword="null" />.
1202 -or-
1203 An error occurred while opening the stream.
1204 -or-
1205 There was no response from the server hosting the resource.
1206 -or-
1207 The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1208     </member>
1209     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
1210       <summary>Uploads the data in the specified name/value collection to the resource identified by the specified URI. This method does not block the calling thread.</summary>
1211       <param name="address">The URI of the resource to receive the collection. This URI must identify a resource that can accept a request sent with the default method.</param>
1212       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1213       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1214 -or-
1215 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1216       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1217 -or-
1218 There was no response from the server hosting the resource.</exception>
1219     </member>
1220     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1221       <summary>Uploads the data in the specified name/value collection to the resource identified by the specified URI, using the specified method. This method does not block the calling thread.</summary>
1222       <param name="address">The URI of the resource to receive the collection. This URI must identify a resource that can accept a request sent with the <paramref name="method" /> method.</param>
1223       <param name="method">The method used to send the string to the resource. If null, the default is POST for http and STOR for ftp.</param>
1224       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1225       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1226 -or-
1227 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1228       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1229 -or-
1230 There was no response from the server hosting the resource.
1231 -or-
1232 <paramref name="method" /> cannot be used to send content.</exception>
1233     </member>
1234     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection,System.Object)">
1235       <summary>Uploads the data in the specified name/value collection to the resource identified by the specified URI, using the specified method. This method does not block the calling thread, and allows the caller to pass an object to the method that is invoked when the operation completes.</summary>
1236       <param name="address">The URI of the resource to receive the collection. This URI must identify a resource that can accept a request sent with the <paramref name="method" /> method.</param>
1237       <param name="method">The HTTP method used to send the string to the resource. If null, the default is POST for http and STOR for ftp.</param>
1238       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1239       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
1240       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1241 -or-
1242 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1243       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1244 -or-
1245 There was no response from the server hosting the resource.
1246 -or-
1247 <paramref name="method" /> cannot be used to send content.</exception>
1248     </member>
1249     <member name="E:System.Net.WebClient.UploadValuesCompleted">
1250       <summary>Occurs when an asynchronous upload of a name/value collection completes.</summary>
1251     </member>
1252     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.Collections.Specialized.NameValueCollection)">
1253       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1254       <param name="address">The URI of the resource to receive the collection.</param>
1255       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1256       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the response sent by the server.</returns>
1257       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1258 -or-
1259 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1260       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1261 -or-
1262 There was no response from the server hosting the resource.
1263 -or-
1264 An error occurred while opening the stream.
1265 -or-
1266 The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1267     </member>
1268     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
1269       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1270       <param name="address">The URI of the resource to receive the collection.</param>
1271       <param name="method">The HTTP method used to send the collection to the resource. If null, the default is POST for http and STOR for ftp.</param>
1272       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1273       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the response sent by the server.</returns>
1274       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1275 -or-
1276 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1277       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1278 -or-
1279 <paramref name="method" /> cannot be used to send content.
1280 -or-
1281 There was no response from the server hosting the resource.
1282 -or-
1283 An error occurred while opening the stream.
1284 -or-
1285 The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1286     </member>
1287     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
1288       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1289       <param name="address">The URI of the resource to receive the collection.</param>
1290       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1291       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the response sent by the server.</returns>
1292       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1293 -or-
1294 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1295       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1296 -or-
1297 An error occurred while opening the stream.
1298 -or-
1299 There was no response from the server hosting the resource.
1300 -or-
1301 The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1302     </member>
1303     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1304       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1305       <param name="address">The URI of the resource to receive the collection.</param>
1306       <param name="method">The HTTP method used to send the collection to the resource. If null, the default is POST for http and STOR for ftp.</param>
1307       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1308       <returns>The task object representing the asynchronous operation. The <see cref="P:System.Threading.Tasks.Task`1.Result" /> property on the task object returns a <see cref="T:System.Byte" /> array containing the response sent by the server.</returns>
1309       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1310 -or-
1311 The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1312       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1313 -or-
1314 <paramref name="method" /> cannot be used to send content.
1315 -or-
1316 There was no response from the server hosting the resource.
1317 -or-
1318 An error occurred while opening the stream.
1319 -or-
1320 The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1321     </member>
1322     <member name="P:System.Net.WebClient.UseDefaultCredentials">
1323       <summary>Gets or sets a <see cref="T:System.Boolean" /> value that controls whether the <see cref="P:System.Net.CredentialCache.DefaultCredentials" /> are sent with requests.</summary>
1324       <returns>
1325         <see langword="true" /> if the default credentials are used; otherwise <see langword="false" />. The default value is <see langword="false" />.</returns>
1326     </member>
1327     <member name="E:System.Net.WebClient.WriteStreamClosed">
1328       <summary>Occurs when an asynchronous operation to write data to a resource using a write stream is closed.</summary>
1329     </member>
1330     <member name="T:System.Net.WriteStreamClosedEventArgs">
1331       <summary>Provides data for the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event.</summary>
1332     </member>
1333     <member name="M:System.Net.WriteStreamClosedEventArgs.#ctor">
1334       <summary>Initializes a new instance of the <see cref="T:System.Net.WriteStreamClosedEventArgs" /> class.</summary>
1335     </member>
1336     <member name="P:System.Net.WriteStreamClosedEventArgs.Error">
1337       <summary>Gets the error value when a write stream is closed.</summary>
1338       <returns>Returns <see cref="T:System.Exception" />.</returns>
1339     </member>
1340     <member name="T:System.Net.WriteStreamClosedEventHandler">
1341       <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
1342       <param name="sender" />
1343       <param name="e" />
1344     </member>
1345   </members>
1346 </doc>