Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Net.WebClient.xml
index 31ee626..98277ff 100755 (executable)
     <member name="T:System.Net.WebClient">
       <summary>Provides common methods for sending data to and receiving data from a resource identified by a URI.</summary>
     </member>
-    <member name="E:System.Net.WebClient.DownloadDataCompleted">
-      <summary>Occurs when an asynchronous data download operation completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.DownloadFileCompleted">
-      <summary>Occurs when an asynchronous file download operation completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.DownloadProgressChanged">
-      <summary>Occurs when an asynchronous download operation successfully transfers some or all of the data.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.DownloadStringCompleted">
-      <summary>Occurs when an asynchronous resource-download operation completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.OpenReadCompleted">
-      <summary>Occurs when an asynchronous operation to open a stream containing a resource completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.OpenWriteCompleted">
-      <summary>Occurs when an asynchronous operation to open a stream to write data to a resource completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.UploadDataCompleted">
-      <summary>Occurs when an asynchronous data-upload operation completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.UploadFileCompleted">
-      <summary>Occurs when an asynchronous file-upload operation completes.</summary>
-    </member>
-    <member name="E:System.Net.WebClient.UploadProgressChanged">
-      <summary>Occurs when an asynchronous upload operation successfully transfers some or all of the data.</summary>
+    <member name="M:System.Net.WebClient.#ctor">
+      <summary>Initializes a new instance of the <see cref="T:System.Net.WebClient" /> class.</summary>
     </member>
-    <member name="E:System.Net.WebClient.UploadStringCompleted">
-      <summary>Occurs when an asynchronous string-upload operation completes.</summary>
+    <member name="P:System.Net.WebClient.AllowReadStreamBuffering">
+      <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>
+      <returns>
+        <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>
     </member>
-    <member name="E:System.Net.WebClient.UploadValuesCompleted">
-      <summary>Occurs when an asynchronous upload of a name/value collection completes.</summary>
+    <member name="P:System.Net.WebClient.AllowWriteStreamBuffering">
+      <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>
+      <returns>
+        <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>
     </member>
-    <member name="E:System.Net.WebClient.WriteStreamClosed">
-      <summary>Occurs when an asynchronous operation to write data to a resource using a write stream is closed.</summary>
+    <member name="P:System.Net.WebClient.BaseAddress">
+      <summary>Gets or sets the base URI for requests made by a <see cref="T:System.Net.WebClient" />.</summary>
+      <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>
+      <exception cref="T:System.ArgumentException">
+        <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>
     </member>
-    <member name="M:System.Net.WebClient.#ctor">
-      <summary>Initializes a new instance of the <see cref="T:System.Net.WebClient" /> class.</summary>
+    <member name="P:System.Net.WebClient.CachePolicy">
+      <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>
+      <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that represents the application's caching requirements.</returns>
     </member>
     <member name="M:System.Net.WebClient.CancelAsync">
       <summary>Cancels a pending asynchronous operation.</summary>
     </member>
+    <member name="P:System.Net.WebClient.Credentials">
+      <summary>Gets or sets the network credentials that are sent to the host and used to authenticate the request.</summary>
+      <returns>An <see cref="T:System.Net.ICredentials" /> containing the authentication credentials for the request. The default is <see langword="null" />.</returns>
+    </member>
     <member name="M:System.Net.WebClient.DownloadData(System.String)">
       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
       <param name="address">The URI from which to download data.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading data.</exception>
+-or-
+An error occurred while downloading data.</exception>
       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
     </member>
     <member name="M:System.Net.WebClient.DownloadData(System.Uri)">
       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified.</summary>
       <param name="address">The URI represented by the <see cref="T:System.Uri" /> object, from which to download data.</param>
-      <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <returns>A <see cref="T:System.Byte" /> array containing the downloaded resource.</returns>
+      <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri)">
       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadDataAsync(System.Uri,System.Object)">
       <summary>Downloads the resource as a <see cref="T:System.Byte" /> array from the URI specified as an asynchronous operation.</summary>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.DownloadDataCompleted">
+      <summary>Occurs when an asynchronous data download operation completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.String)">
       <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>
       <param name="address">The URI of the resource to download.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadDataTaskAsync(System.Uri)">
       <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>
       <param name="address">The URI of the resource to download.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadFile(System.String,System.String)">
       <summary>Downloads the resource with the specified URI to a local file.</summary>
       <param name="fileName">The name of the local file that is to receive the data.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
-
- -or-
-
- The file does not exist.
-
- -or- An error occurred while downloading data.</exception>
+-or-
+<paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
+-or-
+The file does not exist.
+-or- An error occurred while downloading data.</exception>
       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadFile(System.Uri,System.String)">
       <param name="address">The URI specified as a <see cref="T:System.String" />, from which to download data.</param>
       <param name="fileName">The name of the local file that is to receive the data.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
-
- -or-
-
- The file does not exist.
-
- -or-
-
- An error occurred while downloading data.</exception>
+-or-
+<paramref name="filename" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.
+-or-
+The file does not exist.
+-or-
+An error occurred while downloading data.</exception>
       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String)">
       <param name="address">The URI of the resource to download.</param>
       <param name="fileName">The name of the file to be placed on the local computer.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadFileAsync(System.Uri,System.String,System.Object)">
       <param name="fileName">The name of the file to be placed on the local computer.</param>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
     </member>
+    <member name="E:System.Net.WebClient.DownloadFileCompleted">
+      <summary>Occurs when an asynchronous file download operation completes.</summary>
+    </member>
     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.String,System.String)">
       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to download.</param>
       <param name="fileName">The name of the file to be placed on the local computer.</param>
+      <returns>The task object representing the asynchronous operation.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
-      <returns>The task object representing the asynchronous operation.</returns>
     </member>
     <member name="M:System.Net.WebClient.DownloadFileTaskAsync(System.Uri,System.String)">
       <summary>Downloads the specified resource to a local file as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to download.</param>
       <param name="fileName">The name of the file to be placed on the local computer.</param>
+      <returns>The task object representing the asynchronous operation.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.InvalidOperationException">The local file specified by <paramref name="fileName" /> is in use by another thread.</exception>
-      <returns>The task object representing the asynchronous operation.</returns>
+    </member>
+    <member name="E:System.Net.WebClient.DownloadProgressChanged">
+      <summary>Occurs when an asynchronous download operation successfully transfers some or all of the data.</summary>
     </member>
     <member name="M:System.Net.WebClient.DownloadString(System.String)">
       <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>
       <param name="address">A <see cref="T:System.String" /> containing the URI to download.</param>
+      <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
-      <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
     </member>
     <member name="M:System.Net.WebClient.DownloadString(System.Uri)">
       <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>
       <param name="address">A <see cref="T:System.Uri" /> object containing the URI to download.</param>
+      <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
       <exception cref="T:System.NotSupportedException">The method has been called simultaneously on multiple threads.</exception>
-      <returns>A <see cref="T:System.String" /> containing the requested resource.</returns>
     </member>
     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri)">
       <summary>Downloads the resource specified as a <see cref="T:System.Uri" />. This method does not block the calling thread.</summary>
       <param name="address">A <see cref="T:System.Uri" /> containing the URI to download.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadStringAsync(System.Uri,System.Object)">
       <summary>Downloads the specified string to the specified resource. This method does not block the calling thread.</summary>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
+-or-
+An error occurred while downloading the resource.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.DownloadStringCompleted">
+      <summary>Occurs when an asynchronous resource-download operation completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.String)">
       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to download.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.DownloadStringTaskAsync(System.Uri)">
       <summary>Downloads the resource as a <see cref="T:System.String" /> from the URI specified as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to download.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading the resource.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.</exception>
+    </member>
+    <member name="P:System.Net.WebClient.Encoding">
+      <summary>Gets or sets the <see cref="T:System.Text.Encoding" /> used to upload and download strings.</summary>
+      <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>
     </member>
     <member name="M:System.Net.WebClient.GetWebRequest(System.Uri)">
       <summary>Returns a <see cref="T:System.Net.WebRequest" /> object for the specified resource.</summary>
       <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>
       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response for the specified <see cref="T:System.Net.WebRequest" />.</returns>
     </member>
+    <member name="P:System.Net.WebClient.Headers">
+      <summary>Gets or sets a collection of header name/value pairs associated with the request.</summary>
+      <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing header name/value pairs associated with this request.</returns>
+    </member>
+    <member name="P:System.Net.WebClient.IsBusy">
+      <summary>Gets whether a Web request is in progress.</summary>
+      <returns>
+        <see langword="true" /> if the Web request is still in progress; otherwise <see langword="false" />.</returns>
+    </member>
     <member name="M:System.Net.WebClient.OnDownloadDataCompleted(System.Net.DownloadDataCompletedEventArgs)">
       <summary>Raises the <see cref="E:System.Net.WebClient.DownloadDataCompleted" /> event.</summary>
       <param name="e">A <see cref="T:System.Net.DownloadDataCompletedEventArgs" /> object that contains event data.</param>
     <member name="M:System.Net.WebClient.OpenRead(System.String)">
       <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.String" />.</summary>
       <param name="address">The URI specified as a <see cref="T:System.String" /> from which to download data.</param>
+      <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading data.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
+-or-
+An error occurred while downloading data.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenRead(System.Uri)">
-      <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.Uri" />.</summary>
+      <summary>Opens a readable stream for the data downloaded from a resource with the URI specified as a <see cref="T:System.Uri" /></summary>
       <param name="address">The URI specified as a <see cref="T:System.Uri" /> from which to download data.</param>
+      <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while downloading data.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to read data from a resource.</returns>
+-or-
+An error occurred while downloading data.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri)">
       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
       <param name="address">The URI of the resource to retrieve.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
-
- -or-
-
- An error occurred while downloading the resource.
-
- -or-
-
- An error occurred while opening the stream.</exception>
+-or-
+An error occurred while downloading the resource.
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenReadAsync(System.Uri,System.Object)">
       <summary>Opens a readable stream containing the specified resource. This method does not block the calling thread.</summary>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
-
- -or-
-
- An error occurred while downloading the resource.
-
- -or-
-
- An error occurred while opening the stream.</exception>
+-or-
+An error occurred while downloading the resource.
+-or-
+An error occurred while opening the stream.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.OpenReadCompleted">
+      <summary>Occurs when an asynchronous operation to open a stream containing a resource completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.String)">
       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to retrieve.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
-
- -or-
-
- An error occurred while downloading the resource.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenReadTaskAsync(System.Uri)">
       <summary>Opens a readable stream containing the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to retrieve.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and address is invalid.
-
- -or-
-
- An error occurred while downloading the resource.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while downloading the resource.
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWrite(System.String)">
       <summary>Opens a stream for writing data to the specified resource.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
+      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWrite(System.String,System.String)">
       <summary>Opens a stream for writing data to the specified resource, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
+      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWrite(System.Uri)">
       <summary>Opens a stream for writing data to the specified resource.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
+      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWrite(System.Uri,System.String)">
       <summary>Opens a stream for writing data to the specified resource, by using the specified method.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
+      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <returns>A <see cref="T:System.IO.Stream" /> used to write data to the resource.</returns>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWriteAsync(System.Uri)">
       <summary>Opens a stream for writing data to the specified resource. This method does not block the calling thread.</summary>
       <summary>Opens a stream for writing data to the specified resource, using the specified method. This method does not block the calling thread.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
-      <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
+      <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
+-or-
+An error occurred while opening the stream.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.OpenWriteCompleted">
+      <summary>Occurs when an asynchronous operation to open a stream to write data to a resource completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String)">
       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.String,System.String)">
       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri)">
       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.</exception>
     </member>
     <member name="M:System.Net.WebClient.OpenWriteTaskAsync(System.Uri,System.String)">
       <summary>Opens a stream for writing data to the specified resource as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.</exception>
+    </member>
+    <member name="P:System.Net.WebClient.Proxy">
+      <summary>Gets or sets the proxy used by this <see cref="T:System.Net.WebClient" /> object.</summary>
+      <returns>An <see cref="T:System.Net.IWebProxy" /> instance used to send requests.</returns>
+      <exception cref="T:System.ArgumentNullException">
+        <see cref="P:System.Net.WebClient.Proxy" /> is set to <see langword="null" />.</exception>
+    </member>
+    <member name="P:System.Net.WebClient.QueryString">
+      <summary>Gets or sets a collection of query name/value pairs associated with the request.</summary>
+      <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>
+    </member>
+    <member name="P:System.Net.WebClient.ResponseHeaders">
+      <summary>Gets a collection of header name/value pairs associated with the response.</summary>
+      <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>
     </member>
     <member name="M:System.Net.WebClient.UploadData(System.String,System.Byte[])">
       <summary>Uploads a data buffer to a resource identified by a URI.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <param name="data">The data buffer to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while sending the data.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while sending the data.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadData(System.String,System.String,System.Byte[])">
       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
       <param name="data">The data buffer to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while uploading the data.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while uploading the data.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.Byte[])">
       <summary>Uploads a data buffer to a resource identified by a URI.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <param name="data">The data buffer to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while sending the data.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while sending the data.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadData(System.Uri,System.String,System.Byte[])">
       <summary>Uploads a data buffer to the specified resource, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
       <param name="data">The data buffer to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while uploading the data.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while uploading the data.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.Byte[])">
       <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>
       <param name="data">The data buffer to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[])">
       <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>
       <param name="data">The data buffer to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataAsync(System.Uri,System.String,System.Byte[],System.Object)">
       <summary>Uploads a data buffer to a resource identified by a URI, using the specified method and identifying token.</summary>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.UploadDataCompleted">
+      <summary>Occurs when an asynchronous data-upload operation completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.Byte[])">
       <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>
       <param name="address">The URI of the resource to receive the data.</param>
       <param name="data">The data buffer to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.String,System.String,System.Byte[])">
       <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>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
       <param name="data">The data buffer to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.Byte[])">
       <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>
       <param name="address">The URI of the resource to receive the data.</param>
       <param name="data">The data buffer to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadDataTaskAsync(System.Uri,System.String,System.Byte[])">
       <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>
       <param name="address">The URI of the resource to receive the data.</param>
       <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>
       <param name="data">The data buffer to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String)">
       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
-
- -or-
-
- An error occurred while uploading the file.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
+-or-
+An error occurred while uploading the file.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFile(System.String,System.String,System.String)">
       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the file.</param>
       <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>
       <param name="fileName">The file to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
-
- -or-
-
- An error occurred while uploading the file.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
+-or-
+An error occurred while uploading the file.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String)">
       <summary>Uploads the specified local file to a resource with the specified URI.</summary>
       <param name="address">The URI of the resource to receive the file. For example, ftp://localhost/samplefile.txt.</param>
       <param name="fileName">The file to send to the resource. For example, "samplefile.txt".</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
-
- -or-
-
- An error occurred while uploading the file.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
+-or-
+An error occurred while uploading the file.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFile(System.Uri,System.String,System.String)">
       <summary>Uploads the specified local file to the specified resource, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the file.</param>
       <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>
       <param name="fileName">The file to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
-
- -or-
-
- An error occurred while uploading the file.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="fileName" /> is <see langword="null" />, is <see cref="F:System.String.Empty" />, contains invalid characters, or does not exist.
+-or-
+An error occurred while uploading the file.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String)">
       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
       <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>
       <param name="fileName">The file to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String)">
       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
       <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>
       <param name="fileName">The file to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileAsync(System.Uri,System.String,System.String,System.Object)">
       <summary>Uploads the specified local file to the specified resource, using the POST method. This method does not block the calling thread.</summary>
       <param name="fileName">The file to send to the resource.</param>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.UploadFileCompleted">
+      <summary>Occurs when an asynchronous file-upload operation completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String)">
       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
       <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>
       <param name="fileName">The local file to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <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>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.String,System.String,System.String)">
       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
       <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>
       <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>
       <param name="fileName">The local file to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <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>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String)">
       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
       <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>
       <param name="fileName">The local file to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <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>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadFileTaskAsync(System.Uri,System.String,System.String)">
       <summary>Uploads the specified local file to a resource as an asynchronous operation using a task object.</summary>
       <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>
       <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>
       <param name="fileName">The local file to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <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.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
-      <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>
+-or-
+<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.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header begins with <see langword="multipart" />.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.UploadProgressChanged">
+      <summary>Occurs when an asynchronous upload operation successfully transfers some or all of the data.</summary>
     </member>
     <member name="M:System.Net.WebClient.UploadString(System.String,System.String)">
       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadString(System.String,System.String,System.String)">
       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
       <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>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.</exception>
-      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
+-or-
+There was no response from the server hosting the resource.
+-or-
+<paramref name="method" /> cannot be used to send content.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String)">
       <summary>Uploads the specified string to the specified resource, using the POST method.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadString(System.Uri,System.String,System.String)">
       <summary>Uploads the specified string to the specified resource, using the specified method.</summary>
       <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>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.</exception>
-      <returns>A <see cref="T:System.String" /> containing the response sent by the server.</returns>
+-or-
+There was no response from the server hosting the resource.
+-or-
+<paramref name="method" /> cannot be used to send content.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String)">
       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String)">
       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringAsync(System.Uri,System.String,System.String,System.Object)">
       <summary>Uploads the specified string to the specified resource. This method does not block the calling thread.</summary>
       <param name="data">The string to be uploaded.</param>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.UploadStringCompleted">
+      <summary>Occurs when an asynchronous string-upload operation completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String)">
       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.String,System.String,System.String)">
       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
       <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>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String)">
       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadStringTaskAsync(System.Uri,System.String,System.String)">
       <summary>Uploads the specified string to the specified resource as an asynchronous operation using a task object.</summary>
       <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>
       <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>
       <param name="data">The string to be uploaded.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
-      <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>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValues(System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+There was no response from the server hosting the resource.
+-or-
+An error occurred while opening the stream.
+-or-
+The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValues(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+There was no response from the server hosting the resource.
+-or-
+An error occurred while opening the stream.
+-or-
+The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValues(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI, using the specified method.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="data" /> is <see langword="null" />.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
-      <returns>A <see cref="T:System.Byte" /> array containing the body of the response from the resource.</returns>
+-or-
+<paramref name="data" /> is <see langword="null" />.
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
       <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>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.</exception>
+-or-
+There was no response from the server hosting the resource.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
       <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>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.</exception>
+-or-
+There was no response from the server hosting the resource.
+-or-
+<paramref name="method" /> cannot be used to send content.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection,System.Object)">
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
       <param name="userToken">A user-defined object that is passed to the method invoked when the asynchronous operation completes.</param>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" /> and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.</exception>
+-or-
+There was no response from the server hosting the resource.
+-or-
+<paramref name="method" /> cannot be used to send content.</exception>
+    </member>
+    <member name="E:System.Net.WebClient.UploadValuesCompleted">
+      <summary>Occurs when an asynchronous upload of a name/value collection completes.</summary>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
-      <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>
+-or-
+There was no response from the server hosting the resource.
+-or-
+An error occurred while opening the stream.
+-or-
+The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.String,System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
-      <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>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.
+-or-
+An error occurred while opening the stream.
+-or-
+The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
-      <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>
+-or-
+An error occurred while opening the stream.
+-or-
+There was no response from the server hosting the resource.
+-or-
+The <see langword="Content-type" /> header value is not <see langword="null" /> and is not <see langword="application/x-www-form-urlencoded" />.</exception>
     </member>
     <member name="M:System.Net.WebClient.UploadValuesTaskAsync(System.Uri,System.String,System.Collections.Specialized.NameValueCollection)">
       <summary>Uploads the specified name/value collection to the resource identified by the specified URI as an asynchronous operation using a task object.</summary>
       <param name="address">The URI of the resource to receive the collection.</param>
       <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>
       <param name="data">The <see cref="T:System.Collections.Specialized.NameValueCollection" /> to send to the resource.</param>
+      <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>
       <exception cref="T:System.ArgumentNullException">The <paramref name="address" /> parameter is <see langword="null" />.
-
- -or-
-
- The <paramref name="data" /> parameter is <see langword="null" />.</exception>
+-or-
+The <paramref name="data" /> parameter is <see langword="null" />.</exception>
       <exception cref="T:System.Net.WebException">The URI formed by combining <see cref="P:System.Net.WebClient.BaseAddress" />, and <paramref name="address" /> is invalid.
-
- -or-
-
- <paramref name="method" /> cannot be used to send content.
-
- -or-
-
- There was no response from the server hosting the resource.
-
- -or-
-
- An error occurred while opening the stream.
-
- -or-
-
- The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
-      <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>
-    </member>
-    <member name="P:System.Net.WebClient.AllowReadStreamBuffering">
-      <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>
-      <returns>
-        <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>
-    </member>
-    <member name="P:System.Net.WebClient.AllowWriteStreamBuffering">
-      <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>
-      <returns>
-        <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>
-    </member>
-    <member name="P:System.Net.WebClient.BaseAddress">
-      <summary>Gets or sets the base URI for requests made by a <see cref="T:System.Net.WebClient" />.</summary>
-      <exception cref="T:System.ArgumentException">
-        <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>
-      <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>
-    </member>
-    <member name="P:System.Net.WebClient.CachePolicy">
-      <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>
-      <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that represents the application's caching requirements.</returns>
-    </member>
-    <member name="P:System.Net.WebClient.Credentials">
-      <summary>Gets or sets the network credentials that are sent to the host and used to authenticate the request.</summary>
-      <returns>An <see cref="T:System.Net.ICredentials" /> containing the authentication credentials for the request. The default is <see langword="null" />.</returns>
-    </member>
-    <member name="P:System.Net.WebClient.Encoding">
-      <summary>Gets or sets the <see cref="T:System.Text.Encoding" /> used to upload and download strings.</summary>
-      <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>
-    </member>
-    <member name="P:System.Net.WebClient.Headers">
-      <summary>Gets or sets a collection of header name/value pairs associated with the request.</summary>
-      <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing header name/value pairs associated with this request.</returns>
-    </member>
-    <member name="P:System.Net.WebClient.IsBusy">
-      <summary>Gets whether a Web request is in progress.</summary>
-      <returns>
-        <see langword="true" /> if the Web request is still in progress; otherwise <see langword="false" />.</returns>
-    </member>
-    <member name="P:System.Net.WebClient.Proxy">
-      <summary>Gets or sets the proxy used by this <see cref="T:System.Net.WebClient" /> object.</summary>
-      <exception cref="T:System.ArgumentNullException">
-        <see cref="P:System.Net.WebClient.Proxy" /> is set to <see langword="null" />.</exception>
-      <returns>An <see cref="T:System.Net.IWebProxy" /> instance used to send requests.</returns>
-    </member>
-    <member name="P:System.Net.WebClient.QueryString">
-      <summary>Gets or sets a collection of query name/value pairs associated with the request.</summary>
-      <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>
-    </member>
-    <member name="P:System.Net.WebClient.ResponseHeaders">
-      <summary>Gets a collection of header name/value pairs associated with the response.</summary>
-      <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>
+-or-
+<paramref name="method" /> cannot be used to send content.
+-or-
+There was no response from the server hosting the resource.
+-or-
+An error occurred while opening the stream.
+-or-
+The <see langword="Content-type" /> header is not <see langword="null" /> or "application/x-www-form-urlencoded".</exception>
     </member>
     <member name="P:System.Net.WebClient.UseDefaultCredentials">
       <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>
       <returns>
         <see langword="true" /> if the default credentials are used; otherwise <see langword="false" />. The default value is <see langword="false" />.</returns>
     </member>
+    <member name="E:System.Net.WebClient.WriteStreamClosed">
+      <summary>Occurs when an asynchronous operation to write data to a resource using a write stream is closed.</summary>
+    </member>
     <member name="T:System.Net.WriteStreamClosedEventArgs">
       <summary>Provides data for the <see cref="E:System.Net.WebClient.WriteStreamClosed" /> event.</summary>
     </member>
     </member>
     <member name="T:System.Net.WriteStreamClosedEventHandler">
       <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>
-      <param name="sender">The source of the event.</param>
-      <param name="e">The event data.</param>
+      <param name="sender" />
+      <param name="e" />
     </member>
   </members>
 </doc>
\ No newline at end of file