31ee62681f7ff76023a861395196228ca5434b5b
[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="E:System.Net.WebClient.DownloadDataCompleted">
147       <summary>Occurs when an asynchronous data download operation completes.</summary>
148     </member>
149     <member name="E:System.Net.WebClient.DownloadFileCompleted">
150       <summary>Occurs when an asynchronous file download operation completes.</summary>
151     </member>
152     <member name="E:System.Net.WebClient.DownloadProgressChanged">
153       <summary>Occurs when an asynchronous download operation successfully transfers some or all of the data.</summary>
154     </member>
155     <member name="E:System.Net.WebClient.DownloadStringCompleted">
156       <summary>Occurs when an asynchronous resource-download operation completes.</summary>
157     </member>
158     <member name="E:System.Net.WebClient.OpenReadCompleted">
159       <summary>Occurs when an asynchronous operation to open a stream containing a resource completes.</summary>
160     </member>
161     <member name="E:System.Net.WebClient.OpenWriteCompleted">
162       <summary>Occurs when an asynchronous operation to open a stream to write data to a resource completes.</summary>
163     </member>
164     <member name="E:System.Net.WebClient.UploadDataCompleted">
165       <summary>Occurs when an asynchronous data-upload operation completes.</summary>
166     </member>
167     <member name="E:System.Net.WebClient.UploadFileCompleted">
168       <summary>Occurs when an asynchronous file-upload operation completes.</summary>
169     </member>
170     <member name="E:System.Net.WebClient.UploadProgressChanged">
171       <summary>Occurs when an asynchronous upload operation successfully transfers some or all of the data.</summary>
172     </member>
173     <member name="E:System.Net.WebClient.UploadStringCompleted">
174       <summary>Occurs when an asynchronous string-upload operation completes.</summary>
175     </member>
176     <member name="E:System.Net.WebClient.UploadValuesCompleted">
177       <summary>Occurs when an asynchronous upload of a name/value collection completes.</summary>
178     </member>
179     <member name="E:System.Net.WebClient.WriteStreamClosed">
180       <summary>Occurs when an asynchronous operation to write data to a resource using a write stream is closed.</summary>
181     </member>
182     <member name="M:System.Net.WebClient.#ctor">
183       <summary>Initializes a new instance of the <see cref="T:System.Net.WebClient" /> class.</summary>
184     </member>
185     <member name="M:System.Net.WebClient.CancelAsync">
186       <summary>Cancels a pending asynchronous operation.</summary>
187     </member>
188     <member name="M:System.Net.WebClient.DownloadData(System.String)">
189       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
190       <param name="address">The URI from which to download data.</param>
191       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
192       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
193
194  -or-
195
196  An error occurred while downloading data.</exception>
197       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
198       <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
199     </member>
200     <member name="M:System.Net.WebClient.DownloadData(System.Uri)">
201       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
202       <param name="address">The URI represented by the <see cref="T:System.Uri" /> object, from which to download data.</param>
203       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
204       <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
205     </member>
206     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri)">
207       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
208       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
209       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
210       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
211
212  -or-
213
214  An error occurred while downloading the resource.</exception>
215     </member>
216     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri,System.Object)">
217       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
218       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
219       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
220       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
221       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
222
223  -or-
224
225  An error occurred while downloading the resource.</exception>
226     </member>
227     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.String)">
228       <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>
229       <param name="address">The URI of the resource to download.</param>
230       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
231       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
232
233  -or-
234
235  An error occurred while downloading the resource.</exception>
236       <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>
237     </member>
238     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.Uri)">
239       <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>
240       <param name="address">The URI of the resource to download.</param>
241       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
242       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
243
244  -or-
245
246  An error occurred while downloading the resource.</exception>
247       <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>
248     </member>
249     <member name="M:System.Net.WebClient.DownloadFile(System.String,System.String)">
250       <summary>Downloads the resource with the specified URI to a local file.</summary>
251       <param name="address">The URI from which to download data.</param>
252       <param name="fileName">The name of the local file that is to receive the data.</param>
253       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
254       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
255
256  -or-
257
258  <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
259
260  -or-
261
262  The file does not exist.
263
264  -or- An error occurred while downloading data.</exception>
265       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
266     </member>
267     <member name="M:System.Net.WebClient.DownloadFile(System.Uri,System.String)">
268       <summary>Downloads the resource with the specified URI to a local file.</summary>
269       <param name="address">The URI specified as a <see cref="T:System.String" />, from which to download data.</param>
270       <param name="fileName">The name of the local file that is to receive the data.</param>
271       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
272
273  -or-
274
275  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
276       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
277
278  -or-
279
280  <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
281
282  -or-
283
284  The file does not exist.
285
286  -or-
287
288  An error occurred while downloading data.</exception>
289       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
290     </member>
291     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String)">
292       <summary>Downloads, to a local file, the resource with the specified URI. This method does not block the calling thread.</summary>
293       <param name="address">The URI of the resource to download.</param>
294       <param name="fileName">The name of the file to be placed on the local computer.</param>
295       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
296
297  -or-
298
299  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
300       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
301
302  -or-
303
304  An error occurred while downloading the resource.</exception>
305       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
306     </member>
307     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String,System.Object)">
308       <summary>Downloads, to a local file, the resource with the specified URI. This method does not block the calling thread.</summary>
309       <param name="address">The URI of the resource to download.</param>
310       <param name="fileName">The name of the file to be placed on the local computer.</param>
311       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
312       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
313
314  -or-
315
316  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
317       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
318
319  -or-
320
321  An error occurred while downloading the resource.</exception>
322       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
323     </member>
324     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.String,System.String)">
325       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
326       <param name="address">The URI of the resource to download.</param>
327       <param name="fileName">The name of the file to be placed on the local computer.</param>
328       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
329
330  -or-
331
332  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
333       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
334
335  -or-
336
337  An error occurred while downloading the resource.</exception>
338       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
339       <returns>The task object representing the asynchronous operation.</returns>
340     </member>
341     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.Uri,System.String)">
342       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
343       <param name="address">The URI of the resource to download.</param>
344       <param name="fileName">The name of the file to be placed on the local computer.</param>
345       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
346
347  -or-
348
349  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
350       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
351
352  -or-
353
354  An error occurred while downloading the resource.</exception>
355       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
356       <returns>The task object representing the asynchronous operation.</returns>
357     </member>
358     <member name="M:System.Net.WebClient.DownloadString(System.String)">
359       <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>
360       <param name="address">A <see cref="T:System.String" /> containing the URI to download.</param>
361       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
362       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
363
364  -or-
365
366  An error occurred while downloading the resource.</exception>
367       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
368       <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
369     </member>
370     <member name="M:System.Net.WebClient.DownloadString(System.Uri)">
371       <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>
372       <param name="address">A <see cref="T:System.Uri" /> object containing the URI to download.</param>
373       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
374       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
375
376  -or-
377
378  An error occurred while downloading the resource.</exception>
379       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
380       <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
381     </member>
382     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri)">
383       <summary>Downloads the resource specified as a <see cref="T:System.Uri" />. This method does not block the calling thread.</summary>
384       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
385       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
386       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
387
388  -or-
389
390  An error occurred while downloading the resource.</exception>
391     </member>
392     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri,System.Object)">
393       <summary>Downloads the specified string to the specified resource. This method does not block the calling thread.</summary>
394       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
395       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
396       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
397       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
398
399  -or-
400
401  An error occurred while downloading the resource.</exception>
402     </member>
403     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.String)">
404       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
405       <param name="address">The URI of the resource to download.</param>
406       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
407       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
408
409  -or-
410
411  An error occurred while downloading the resource.</exception>
412       <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>
413     </member>
414     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.Uri)">
415       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
416       <param name="address">The URI of the resource to download.</param>
417       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
418       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
419
420  -or-
421
422  An error occurred while downloading the resource.</exception>
423       <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>
424     </member>
425     <member name="M:System.Net.WebClient.GetWebRequest(System.Uri)">
426       <summary>Returns a <see cref="T:System.Net.WebRequest" /> object for the specified resource.</summary>
427       <param name="address">A <see cref="T:System.Uri" /> that identifies the resource to request.</param>
428       <returns>A new <see cref="T:System.Net.WebRequest" /> object for the specified resource.</returns>
429     </member>
430     <member name="M:System.Net.WebClient.GetWebResponse(System.Net.WebRequest)">
431       <summary>Returns the <see cref="T:System.Net.WebResponse" /> for the specified <see cref="T:System.Net.WebRequest" />.</summary>
432       <param name="request">A <see cref="T:System.Net.WebRequest" /> that is used to obtain the response.</param>
433       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response for the specified <see cref="T:System.Net.WebRequest" />.</returns>
434     </member>
435     <member name="M:System.Net.WebClient.GetWebResponse(System.Net.WebRequest,System.IAsyncResult)">
436       <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>
437       <param name="request">A <see cref="T:System.Net.WebRequest" /> that is used to obtain the response.</param>
438       <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>
439       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response for the specified <see cref="T:System.Net.WebRequest" />.</returns>
440     </member>
441     <member name="M:System.Net.WebClient.OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs)">
442       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadDataCompleted" /> event.</summary>
443       <param name="e">A <see cref="T:System.Net.DownloadDataCompletedEventArgs" /> object that contains event data.</param>
444     </member>
445     <member name="M:System.Net.WebClient.OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs)">
446       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadFileCompleted" /> event.</summary>
447       <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> object containing event data.</param>
448     </member>
449     <member name="M:System.Net.WebClient.OnDownloadProgressChanged(System.Net.DownloadProgressChangedEventArgs)">
450       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadProgressChanged" /> event.</summary>
451       <param name="e">A <see cref="T:System.Net.DownloadProgressChangedEventArgs" /> object containing event data.</param>
452     </member>
453     <member name="M:System.Net.WebClient.OnDownloadStringCompleted(System.Net.DownloadStringCompletedEventArgs)">
454       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadStringCompleted" /> event.</summary>
455       <param name="e">A <see cref="T:System.Net.DownloadStringCompletedEventArgs" /> object containing event data.</param>
456     </member>
457     <member name="M:System.Net.WebClient.OnOpenReadCompleted(System.Net.OpenReadCompletedEventArgs)">
458       <summary>Raises the <see cref="E:System.Net.WebClient.OpenReadCompleted" /> event.</summary>
459       <param name="e">A <see cref="T:System.Net.OpenReadCompletedEventArgs" /> object containing event data.</param>
460     </member>
461     <member name="M:System.Net.WebClient.OnOpenWriteCompleted(System.Net.OpenWriteCompletedEventArgs)">
462       <summary>Raises the <see cref="E:System.Net.WebClient.OpenWriteCompleted" /> event.</summary>
463       <param name="e">A <see cref="T:System.Net.OpenWriteCompletedEventArgs" /> object containing event data.</param>
464     </member>
465     <member name="M:System.Net.WebClient.OnUploadDataCompleted(System.Net.UploadDataCompletedEventArgs)">
466       <summary>Raises the <see cref="E:System.Net.WebClient.UploadDataCompleted" /> event.</summary>
467       <param name="e">A <see cref="T:System.Net.UploadDataCompletedEventArgs" /> object containing event data.</param>
468     </member>
469     <member name="M:System.Net.WebClient.OnUploadFileCompleted(System.Net.UploadFileCompletedEventArgs)">
470       <summary>Raises the <see cref="E:System.Net.WebClient.UploadFileCompleted" /> event.</summary>
471       <param name="e">An <see cref="T:System.Net.UploadFileCompletedEventArgs" /> object containing event data.</param>
472     </member>
473     <member name="M:System.Net.WebClient.OnUploadProgressChanged(System.Net.UploadProgressChangedEventArgs)">
474       <summary>Raises the <see cref="E:System.Net.WebClient.UploadProgressChanged" /> event.</summary>
475       <param name="e">An <see cref="T:System.Net.UploadProgressChangedEventArgs" /> object containing event data.</param>
476     </member>
477     <member name="M:System.Net.WebClient.OnUploadStringCompleted(System.Net.UploadStringCompletedEventArgs)">
478       <summary>Raises the <see cref="E:System.Net.WebClient.UploadStringCompleted" /> event.</summary>
479       <param name="e">An <see cref="T:System.Net.UploadStringCompletedEventArgs" /> object containing event data.</param>
480     </member>
481     <member name="M:System.Net.WebClient.OnUploadValuesCompleted(System.Net.UploadValuesCompletedEventArgs)">
482       <summary>Raises the <see cref="E:System.Net.WebClient.UploadValuesCompleted" /> event.</summary>
483       <param name="e">A <see cref="T:System.Net.UploadValuesCompletedEventArgs" /> object containing event data.</param>
484     </member>
485     <member name="M:System.Net.WebClient.OnWriteStreamClosed(System.Net.WriteStreamClosedEventArgs)">
486       <summary>Raises the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event.</summary>
487       <param name="e">A <see cref="T:System.Net.WriteStreamClosedEventArgs" /> object containing event data.</param>
488     </member>
489     <member name="M:System.Net.WebClient.OpenRead(System.String)">
490       <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.String" />.</summary>
491       <param name="address">The URI specified as a <see cref="T:System.String" /> from which to download data.</param>
492       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
493       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
494
495  -or-
496
497  An error occurred while downloading data.</exception>
498       <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
499     </member>
500     <member name="M:System.Net.WebClient.OpenRead(System.Uri)">
501       <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.Uri" />.</summary>
502       <param name="address">The URI specified as a <see cref="T:System.Uri" /> from which to download data.</param>
503       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
504       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
505
506  -or-
507
508  An error occurred while downloading data.</exception>
509       <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
510     </member>
511     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri)">
512       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
513       <param name="address">The URI of the resource to retrieve.</param>
514       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
515       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
516
517  -or-
518
519  An error occurred while downloading the resource.
520
521  -or-
522
523  An error occurred while opening the stream.</exception>
524     </member>
525     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri,System.Object)">
526       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
527       <param name="address">The URI of the resource to retrieve.</param>
528       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
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 address is invalid.
531
532  -or-
533
534  An error occurred while downloading the resource.
535
536  -or-
537
538  An error occurred while opening the stream.</exception>
539     </member>
540     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.String)">
541       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
542       <param name="address">The URI of the resource to retrieve.</param>
543       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
544       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
545
546  -or-
547
548  An error occurred while downloading the resource.
549
550  -or-
551
552  An error occurred while opening the stream.</exception>
553       <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>
554     </member>
555     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.Uri)">
556       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
557       <param name="address">The URI of the resource to retrieve.</param>
558       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
559       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
560
561  -or-
562
563  An error occurred while downloading the resource.
564
565  -or-
566
567  An error occurred while opening the stream.</exception>
568       <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>
569     </member>
570     <member name="M:System.Net.WebClient.OpenWrite(System.String)">
571       <summary>Opens a stream for writing data to the specified resource.</summary>
572       <param name="address">The URI of the resource to receive the data.</param>
573       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
574       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
575
576  -or-
577
578  An error occurred while opening the stream.</exception>
579       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
580     </member>
581     <member name="M:System.Net.WebClient.OpenWrite(System.String,System.String)">
582       <summary>Opens a stream for writing data to the specified resource, using the specified method.</summary>
583       <param name="address">The URI of the resource to receive the data.</param>
584       <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>
585       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
586       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
587
588  -or-
589
590  An error occurred while opening the stream.</exception>
591       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
592     </member>
593     <member name="M:System.Net.WebClient.OpenWrite(System.Uri)">
594       <summary>Opens a stream for writing data to the specified resource.</summary>
595       <param name="address">The URI of the resource to receive the data.</param>
596       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
597       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
598
599  -or-
600
601  An error occurred while opening the stream.</exception>
602       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
603     </member>
604     <member name="M:System.Net.WebClient.OpenWrite(System.Uri,System.String)">
605       <summary>Opens a stream for writing data to the specified resource, by using the specified method.</summary>
606       <param name="address">The URI of the resource to receive the data.</param>
607       <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>
608       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
609       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
610
611  -or-
612
613  An error occurred while opening the stream.</exception>
614       <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
615     </member>
616     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri)">
617       <summary>Opens a stream for writing data to the specified resource. This method does not block the calling thread.</summary>
618       <param name="address">The URI of the resource to receive the data.</param>
619       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
620     </member>
621     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri,System.String)">
622       <summary>Opens a stream for writing data to the specified resource. This method does not block the calling thread.</summary>
623       <param name="address">The URI of the resource to receive the data.</param>
624       <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>
625       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
626     </member>
627     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri,System.String,System.Object)">
628       <summary>Opens a stream for writing data to the specified resource, using the specified method. This method does not block the calling thread.</summary>
629       <param name="address">The URI of the resource to receive the data.</param>
630       <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>
631       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
632       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
633       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
634
635  -or-
636
637  An error occurred while opening the stream.</exception>
638     </member>
639     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String)">
640       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
641       <param name="address">The URI of the resource to receive the data.</param>
642       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
643       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
644
645  -or-
646
647  An error occurred while opening the stream.</exception>
648       <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>
649     </member>
650     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String,System.String)">
651       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
652       <param name="address">The URI of the resource to receive the data.</param>
653       <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>
654       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
655       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
656
657  -or-
658
659  An error occurred while opening the stream.</exception>
660       <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>
661     </member>
662     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri)">
663       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
664       <param name="address">The URI of the resource to receive the data.</param>
665       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
666       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
667
668  -or-
669
670  An error occurred while opening the stream.</exception>
671       <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>
672     </member>
673     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri,System.String)">
674       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
675       <param name="address">The URI of the resource to receive the data.</param>
676       <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>
677       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
678       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
679
680  -or-
681
682  An error occurred while opening the stream.</exception>
683       <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>
684     </member>
685     <member name="M:System.Net.WebClient.UploadData(System.String,System.Byte[])">
686       <summary>Uploads a data buffer to a resource identified by a URI.</summary>
687       <param name="address">The URI of the resource to receive the data.</param>
688       <param name="data">The data buffer to send to the resource.</param>
689       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
690       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
691
692  -or-
693
694  <paramref name="data" /> is <see langword="null" />.
695
696  -or-
697
698  An error occurred while sending the data.
699
700  -or-
701
702  There was no response from the server hosting the resource.</exception>
703       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
704     </member>
705     <member name="M:System.Net.WebClient.UploadData(System.String,System.String,System.Byte[])">
706       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
707       <param name="address">The URI of the resource to receive the data.</param>
708       <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>
709       <param name="data">The data buffer to send to the resource.</param>
710       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
711       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
712
713  -or-
714
715  <paramref name="data" /> is <see langword="null" />.
716
717  -or-
718
719  An error occurred while uploading the data.
720
721  -or-
722
723  There was no response from the server hosting the resource.</exception>
724       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
725     </member>
726     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.Byte[])">
727       <summary>Uploads a data buffer to a resource identified by a URI.</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       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
731       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
732
733  -or-
734
735  <paramref name="data" /> is <see langword="null" />.
736
737  -or-
738
739  An error occurred while sending the data.
740
741  -or-
742
743  There was no response from the server hosting the resource.</exception>
744       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
745     </member>
746     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.String,System.Byte[])">
747       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
748       <param name="address">The URI of the resource to receive the data.</param>
749       <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>
750       <param name="data">The data buffer to send to the resource.</param>
751       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
752       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
753
754  -or-
755
756  <paramref name="data" /> is <see langword="null" />.
757
758  -or-
759
760  An error occurred while uploading the data.
761
762  -or-
763
764  There was no response from the server hosting the resource.</exception>
765       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
766     </member>
767     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.Byte[])">
768       <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>
769       <param name="address">The URI of the resource to receive the data.</param>
770       <param name="data">The data buffer to send to the resource.</param>
771       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
772       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
773
774  -or-
775
776  An error occurred while opening the stream.
777
778  -or-
779
780  There was no response from the server hosting the resource.</exception>
781     </member>
782     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[])">
783       <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>
784       <param name="address">The URI of the resource to receive the data.</param>
785       <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>
786       <param name="data">The data buffer to send to the resource.</param>
787       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
788       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
789
790  -or-
791
792  An error occurred while opening the stream.
793
794  -or-
795
796  There was no response from the server hosting the resource.</exception>
797     </member>
798     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[],System.Object)">
799       <summary>Uploads a data buffer to a resource identified by a URI, using the specified method and identifying token.</summary>
800       <param name="address">The URI of the resource to receive the data.</param>
801       <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>
802       <param name="data">The data buffer to send to the resource.</param>
803       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
804       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
805       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
806
807  -or-
808
809  An error occurred while opening the stream.
810
811  -or-
812
813  There was no response from the server hosting the resource.</exception>
814     </member>
815     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.Byte[])">
816       <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>
817       <param name="address">The URI of the resource to receive the data.</param>
818       <param name="data">The data buffer to send to the resource.</param>
819       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
820       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
821
822  -or-
823
824  An error occurred while opening the stream.
825
826  -or-
827
828  There was no response from the server hosting the resource.</exception>
829       <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>
830     </member>
831     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.String,System.Byte[])">
832       <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>
833       <param name="address">The URI of the resource to receive the data.</param>
834       <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>
835       <param name="data">The data buffer to send to the resource.</param>
836       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
837       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
838
839  -or-
840
841  An error occurred while opening the stream.
842
843  -or-
844
845  There was no response from the server hosting the resource.</exception>
846       <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>
847     </member>
848     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.Byte[])">
849       <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>
850       <param name="address">The URI of the resource to receive the data.</param>
851       <param name="data">The data buffer to send to the resource.</param>
852       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
853       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
854
855  -or-
856
857  An error occurred while opening the stream.
858
859  -or-
860
861  There was no response from the server hosting the resource.</exception>
862       <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>
863     </member>
864     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.String,System.Byte[])">
865       <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>
866       <param name="address">The URI of the resource to receive the data.</param>
867       <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>
868       <param name="data">The data buffer to send to the resource.</param>
869       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
870       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
871
872  -or-
873
874  An error occurred while opening the stream.
875
876  -or-
877
878  There was no response from the server hosting the resource.</exception>
879       <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>
880     </member>
881     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String)">
882       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
883       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
884       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
885       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
886
887  -or-
888
889  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
890       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
891
892  -or-
893
894  <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
895
896  -or-
897
898  An error occurred while uploading the file.
899
900  -or-
901
902  There was no response from the server hosting the resource.
903
904  -or-
905
906  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
907       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
908     </member>
909     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String,System.String)">
910       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
911       <param name="address">The URI of the resource to receive the file.</param>
912       <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>
913       <param name="fileName">The file to send to the resource.</param>
914       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
915
916  -or-
917
918  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
919       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
920
921  -or-
922
923  <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
924
925  -or-
926
927  An error occurred while uploading the file.
928
929  -or-
930
931  There was no response from the server hosting the resource.
932
933  -or-
934
935  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
936       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
937     </member>
938     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String)">
939       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
940       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
941       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
942       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
943
944  -or-
945
946  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
947       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
948
949  -or-
950
951  <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
952
953  -or-
954
955  An error occurred while uploading the file.
956
957  -or-
958
959  There was no response from the server hosting the resource.
960
961  -or-
962
963  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
964       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
965     </member>
966     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String,System.String)">
967       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
968       <param name="address">The URI of the resource to receive the file.</param>
969       <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>
970       <param name="fileName">The file to send to the resource.</param>
971       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
972
973  -or-
974
975  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
976       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
977
978  -or-
979
980  <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
981
982  -or-
983
984  An error occurred while uploading the file.
985
986  -or-
987
988  There was no response from the server hosting the resource.
989
990  -or-
991
992  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
993       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
994     </member>
995     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String)">
996       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
997       <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>
998       <param name="fileName">The file to send to the resource.</param>
999       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1000
1001  -or-
1002
1003  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1004       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1005
1006  -or-
1007
1008  <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.
1009
1010  -or-
1011
1012  An error occurred while opening the stream.
1013
1014  -or-
1015
1016  There was no response from the server hosting the resource.
1017
1018  -or-
1019
1020  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1021     </member>
1022     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String)">
1023       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
1024       <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>
1025       <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>
1026       <param name="fileName">The file to send to the resource.</param>
1027       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1028
1029  -or-
1030
1031  The <paramref name="fileName" /> 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
1034  -or-
1035
1036  <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.
1037
1038  -or-
1039
1040  An error occurred while opening the stream.
1041
1042  -or-
1043
1044  There was no response from the server hosting the resource.
1045
1046  -or-
1047
1048  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1049     </member>
1050     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String,System.Object)">
1051       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
1052       <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>
1053       <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>
1054       <param name="fileName">The file to send to the resource.</param>
1055       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
1056       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1057
1058  -or-
1059
1060  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1061       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1062
1063  -or-
1064
1065  <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.
1066
1067  -or-
1068
1069  An error occurred while opening the stream.
1070
1071  -or-
1072
1073  There was no response from the server hosting the resource.
1074
1075  -or-
1076
1077  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1078     </member>
1079     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String)">
1080       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
1081       <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>
1082       <param name="fileName">The local file to send to the resource.</param>
1083       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1084
1085  -or-
1086
1087  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1088       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1089
1090  -or-
1091
1092  <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.
1093
1094  -or-
1095
1096  An error occurred while opening the stream.
1097
1098  -or-
1099
1100  There was no response from the server hosting the resource.
1101
1102  -or-
1103
1104  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1105       <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>
1106     </member>
1107     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String,System.String)">
1108       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
1109       <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>
1110       <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>
1111       <param name="fileName">The local file to send to the resource.</param>
1112       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1113
1114  -or-
1115
1116  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1117       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1118
1119  -or-
1120
1121  <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.
1122
1123  -or-
1124
1125  An error occurred while opening the stream.
1126
1127  -or-
1128
1129  There was no response from the server hosting the resource.
1130
1131  -or-
1132
1133  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1134       <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>
1135     </member>
1136     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String)">
1137       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
1138       <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>
1139       <param name="fileName">The local file to send to the resource.</param>
1140       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1141
1142  -or-
1143
1144  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1145       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1146
1147  -or-
1148
1149  <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.
1150
1151  -or-
1152
1153  An error occurred while opening the stream.
1154
1155  -or-
1156
1157  There was no response from the server hosting the resource.
1158
1159  -or-
1160
1161  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1162       <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>
1163     </member>
1164     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String,System.String)">
1165       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
1166       <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>
1167       <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>
1168       <param name="fileName">The local file to send to the resource.</param>
1169       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1170
1171  -or-
1172
1173  The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
1174       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1175
1176  -or-
1177
1178  <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.
1179
1180  -or-
1181
1182  An error occurred while opening the stream.
1183
1184  -or-
1185
1186  There was no response from the server hosting the resource.
1187
1188  -or-
1189
1190  The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
1191       <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>
1192     </member>
1193     <member name="M:System.Net.WebClient.UploadString(System.String,System.String)">
1194       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
1195       <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>
1196       <param name="data">The string to be uploaded.</param>
1197       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1198
1199  -or-
1200
1201  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1202       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1203
1204  -or-
1205
1206  There was no response from the server hosting the resource.</exception>
1207       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1208     </member>
1209     <member name="M:System.Net.WebClient.UploadString(System.String,System.String,System.String)">
1210       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
1211       <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>
1212       <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>
1213       <param name="data">The string to be uploaded.</param>
1214       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1215
1216  -or-
1217
1218  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1219       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1220
1221  -or-
1222
1223  There was no response from the server hosting the resource.
1224
1225  -or-
1226
1227  <paramref name="method" /> cannot be used to send content.</exception>
1228       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1229     </member>
1230     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String)">
1231       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
1232       <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>
1233       <param name="data">The string to be uploaded.</param>
1234       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1235
1236  -or-
1237
1238  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1239       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1240
1241  -or-
1242
1243  There was no response from the server hosting the resource.</exception>
1244       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1245     </member>
1246     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String,System.String)">
1247       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
1248       <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>
1249       <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>
1250       <param name="data">The string to be uploaded.</param>
1251       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1252
1253  -or-
1254
1255  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1256       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1257
1258  -or-
1259
1260  There was no response from the server hosting the resource.
1261
1262  -or-
1263
1264  <paramref name="method" /> cannot be used to send content.</exception>
1265       <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
1266     </member>
1267     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String)">
1268       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1269       <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>
1270       <param name="data">The string to be uploaded.</param>
1271       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1272
1273  -or-
1274
1275  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1276       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1277
1278  -or-
1279
1280  There was no response from the server hosting the resource.</exception>
1281     </member>
1282     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String)">
1283       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1284       <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>
1285       <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>
1286       <param name="data">The string to be uploaded.</param>
1287       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1288
1289  -or-
1290
1291  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1292       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1293
1294  -or-
1295
1296  <paramref name="method" /> cannot be used to send content.
1297
1298  -or-
1299
1300  There was no response from the server hosting the resource.</exception>
1301     </member>
1302     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String,System.Object)">
1303       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
1304       <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>
1305       <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>
1306       <param name="data">The string to be uploaded.</param>
1307       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
1308       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1309
1310  -or-
1311
1312  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1313       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1314
1315  -or-
1316
1317  <paramref name="method" /> cannot be used to send content.
1318
1319  -or-
1320
1321  There was no response from the server hosting the resource.</exception>
1322     </member>
1323     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String)">
1324       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1325       <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>
1326       <param name="data">The string to be uploaded.</param>
1327       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1328
1329  -or-
1330
1331  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1332       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1333
1334  -or-
1335
1336  There was no response from the server hosting the resource.</exception>
1337       <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>
1338     </member>
1339     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String,System.String)">
1340       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1341       <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>
1342       <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>
1343       <param name="data">The string to be uploaded.</param>
1344       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1345
1346  -or-
1347
1348  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1349       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1350
1351  -or-
1352
1353  <paramref name="method" /> cannot be used to send content.
1354
1355  -or-
1356
1357  There was no response from the server hosting the resource.</exception>
1358       <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>
1359     </member>
1360     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String)">
1361       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1362       <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>
1363       <param name="data">The string to be uploaded.</param>
1364       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1365
1366  -or-
1367
1368  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1369       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1370
1371  -or-
1372
1373  There was no response from the server hosting the resource.</exception>
1374       <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>
1375     </member>
1376     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String,System.String)">
1377       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
1378       <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>
1379       <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>
1380       <param name="data">The string to be uploaded.</param>
1381       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1382
1383  -or-
1384
1385  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1386       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1387
1388  -or-
1389
1390  <paramref name="method" /> cannot be used to send content.
1391
1392  -or-
1393
1394  There was no response from the server hosting the resource.</exception>
1395       <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>
1396     </member>
1397     <member name="M:System.Net.WebClient.UploadValues(System.String,System.Collections.Specialized.NameValueCollection)">
1398       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
1399       <param name="address">The URI of the resource to receive the collection.</param>
1400       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1401       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1402
1403  -or-
1404
1405  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1406       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1407
1408  -or-
1409
1410  <paramref name="data" /> is <see langword="null" />.
1411
1412  -or-
1413
1414  There was no response from the server hosting the resource.
1415
1416  -or-
1417
1418  An error occurred while opening the stream.
1419
1420  -or-
1421
1422  The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1423       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1424     </member>
1425     <member name="M:System.Net.WebClient.UploadValues(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
1426       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
1427       <param name="address">The URI of the resource to receive the collection.</param>
1428       <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>
1429       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1430       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1431
1432  -or-
1433
1434  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1435       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1436
1437  -or-
1438
1439  <paramref name="data" /> is <see langword="null" />.
1440
1441  -or-
1442
1443  An error occurred while opening the stream.
1444
1445  -or-
1446
1447  There was no response from the server hosting the resource.
1448
1449  -or-
1450
1451  The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1452       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1453     </member>
1454     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.Collections.Specialized.NameValueCollection)">
1455       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
1456       <param name="address">The URI of the resource to receive the collection.</param>
1457       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1458       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1459
1460  -or-
1461
1462  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1463       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1464
1465  -or-
1466
1467  <paramref name="data" /> is <see langword="null" />.
1468
1469  -or-
1470
1471  There was no response from the server hosting the resource.
1472
1473  -or-
1474
1475  An error occurred while opening the stream.
1476
1477  -or-
1478
1479  The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1480       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1481     </member>
1482     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1483       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
1484       <param name="address">The URI of the resource to receive the collection.</param>
1485       <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>
1486       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1487       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1488
1489  -or-
1490
1491  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1492       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1493
1494  -or-
1495
1496  <paramref name="data" /> is <see langword="null" />.
1497
1498  -or-
1499
1500  An error occurred while opening the stream.
1501
1502  -or-
1503
1504  There was no response from the server hosting the resource.
1505
1506  -or-
1507
1508  The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1509       <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
1510     </member>
1511     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
1512       <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>
1513       <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>
1514       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1515       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1516
1517  -or-
1518
1519  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1520       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1521
1522  -or-
1523
1524  There was no response from the server hosting the resource.</exception>
1525     </member>
1526     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1527       <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>
1528       <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>
1529       <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>
1530       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1531       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1532
1533  -or-
1534
1535  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1536       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1537
1538  -or-
1539
1540  There was no response from the server hosting the resource.
1541
1542  -or-
1543
1544  <paramref name="method" /> cannot be used to send content.</exception>
1545     </member>
1546     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection,System.Object)">
1547       <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>
1548       <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>
1549       <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>
1550       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1551       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
1552       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1553
1554  -or-
1555
1556  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1557       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
1558
1559  -or-
1560
1561  There was no response from the server hosting the resource.
1562
1563  -or-
1564
1565  <paramref name="method" /> cannot be used to send content.</exception>
1566     </member>
1567     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.Collections.Specialized.NameValueCollection)">
1568       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1569       <param name="address">The URI of the resource to receive the collection.</param>
1570       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1571       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1572
1573  -or-
1574
1575  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1576       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1577
1578  -or-
1579
1580  There was no response from the server hosting the resource.
1581
1582  -or-
1583
1584  An error occurred while opening the stream.
1585
1586  -or-
1587
1588  The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1589       <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>
1590     </member>
1591     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
1592       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1593       <param name="address">The URI of the resource to receive the collection.</param>
1594       <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>
1595       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1596       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1597
1598  -or-
1599
1600  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1601       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1602
1603  -or-
1604
1605  <paramref name="method" /> cannot be used to send content.
1606
1607  -or-
1608
1609  There was no response from the server hosting the resource.
1610
1611  -or-
1612
1613  An error occurred while opening the stream.
1614
1615  -or-
1616
1617  The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1618       <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>
1619     </member>
1620     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
1621       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1622       <param name="address">The URI of the resource to receive the collection.</param>
1623       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1624       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1625
1626  -or-
1627
1628  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1629       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1630
1631  -or-
1632
1633  An error occurred while opening the stream.
1634
1635  -or-
1636
1637  There was no response from the server hosting the resource.
1638
1639  -or-
1640
1641  The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
1642       <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>
1643     </member>
1644     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
1645       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
1646       <param name="address">The URI of the resource to receive the collection.</param>
1647       <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>
1648       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
1649       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
1650
1651  -or-
1652
1653  The <paramref name="data" /> parameter is <see langword="null" />.</exception>
1654       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
1655
1656  -or-
1657
1658  <paramref name="method" /> cannot be used to send content.
1659
1660  -or-
1661
1662  There was no response from the server hosting the resource.
1663
1664  -or-
1665
1666  An error occurred while opening the stream.
1667
1668  -or-
1669
1670  The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
1671       <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>
1672     </member>
1673     <member name="P:System.Net.WebClient.AllowReadStreamBuffering">
1674       <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>
1675       <returns>
1676         <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>
1677     </member>
1678     <member name="P:System.Net.WebClient.AllowWriteStreamBuffering">
1679       <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>
1680       <returns>
1681         <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>
1682     </member>
1683     <member name="P:System.Net.WebClient.BaseAddress">
1684       <summary>Gets or sets the base URI for requests made by a <see cref="T:System.Net.WebClient" />.</summary>
1685       <exception cref="T:System.ArgumentException">
1686         <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>
1687       <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>
1688     </member>
1689     <member name="P:System.Net.WebClient.CachePolicy">
1690       <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>
1691       <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that represents the application's caching requirements.</returns>
1692     </member>
1693     <member name="P:System.Net.WebClient.Credentials">
1694       <summary>Gets or sets the network credentials that are sent to the host and used to authenticate the request.</summary>
1695       <returns>An <see cref="T:System.Net.ICredentials" /> containing the authentication credentials for the request. The default is <see langword="null" />.</returns>
1696     </member>
1697     <member name="P:System.Net.WebClient.Encoding">
1698       <summary>Gets or sets the <see cref="T:System.Text.Encoding" /> used to upload and download strings.</summary>
1699       <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>
1700     </member>
1701     <member name="P:System.Net.WebClient.Headers">
1702       <summary>Gets or sets a collection of header name/value pairs associated with the request.</summary>
1703       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing header name/value pairs associated with this request.</returns>
1704     </member>
1705     <member name="P:System.Net.WebClient.IsBusy">
1706       <summary>Gets whether a Web request is in progress.</summary>
1707       <returns>
1708         <see langword="true" /> if the Web request is still in progress; otherwise <see langword="false" />.</returns>
1709     </member>
1710     <member name="P:System.Net.WebClient.Proxy">
1711       <summary>Gets or sets the proxy used by this <see cref="T:System.Net.WebClient" /> object.</summary>
1712       <exception cref="T:System.ArgumentNullException">
1713         <see cref="P:System.Net.WebClient.Proxy" /> is set to <see langword="null" />.</exception>
1714       <returns>An <see cref="T:System.Net.IWebProxy" /> instance used to send requests.</returns>
1715     </member>
1716     <member name="P:System.Net.WebClient.QueryString">
1717       <summary>Gets or sets a collection of query name/value pairs associated with the request.</summary>
1718       <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>
1719     </member>
1720     <member name="P:System.Net.WebClient.ResponseHeaders">
1721       <summary>Gets a collection of header name/value pairs associated with the response.</summary>
1722       <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>
1723     </member>
1724     <member name="P:System.Net.WebClient.UseDefaultCredentials">
1725       <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>
1726       <returns>
1727         <see langword="true" /> if the default credentials are used; otherwise <see langword="false" />. The default value is <see langword="false" />.</returns>
1728     </member>
1729     <member name="T:System.Net.WriteStreamClosedEventArgs">
1730       <summary>Provides data for the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event.</summary>
1731     </member>
1732     <member name="M:System.Net.WriteStreamClosedEventArgs.#ctor">
1733       <summary>Initializes a new instance of the <see cref="T:System.Net.WriteStreamClosedEventArgs" /> class.</summary>
1734     </member>
1735     <member name="P:System.Net.WriteStreamClosedEventArgs.Error">
1736       <summary>Gets the error value when a write stream is closed.</summary>
1737       <returns>Returns <see cref="T:System.Exception" />.</returns>
1738     </member>
1739     <member name="T:System.Net.WriteStreamClosedEventHandler">
1740       <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>
1741       <param name="sender">The source of the event.</param>
1742       <param name="e">The event data.</param>
1743     </member>
1744   </members>
1745 </doc>