Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Web.HttpUtility.xml
index 7566ff1..be04dd0 100755 (executable)
@@ -17,7 +17,7 @@
     </member>
     <member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String,System.IO.TextWriter)">
       <summary>Minimally converts a string into an HTML-encoded string and sends the encoded string to a <see cref="T:System.IO.TextWriter" /> output stream.</summary>
-      <param name="s">The string to encode.</param>
+      <param name="s">The string to encode</param>
       <param name="output">A <see cref="T:System.IO.TextWriter" /> output stream.</param>
     </member>
     <member name="M:System.Web.HttpUtility.HtmlDecode(System.String)">
@@ -42,7 +42,7 @@
     </member>
     <member name="M:System.Web.HttpUtility.HtmlEncode(System.String,System.IO.TextWriter)">
       <summary>Converts a string into an HTML-encoded string, and returns the output as a <see cref="T:System.IO.TextWriter" /> stream of output.</summary>
-      <param name="s">The string to encode.</param>
+      <param name="s">The string to encode</param>
       <param name="output">A <see cref="T:System.IO.TextWriter" /> output stream.</param>
     </member>
     <member name="M:System.Web.HttpUtility.JavaScriptStringEncode(System.String)">
     <member name="M:System.Web.HttpUtility.ParseQueryString(System.String)">
       <summary>Parses a query string into a <see cref="T:System.Collections.Specialized.NameValueCollection" /> using <see cref="P:System.Text.Encoding.UTF8" /> encoding.</summary>
       <param name="query">The query string to parse.</param>
+      <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of query parameters and values.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="query" /> is <see langword="null" />.</exception>
-      <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of query parameters and values.</returns>
     </member>
     <member name="M:System.Web.HttpUtility.ParseQueryString(System.String,System.Text.Encoding)">
       <summary>Parses a query string into a <see cref="T:System.Collections.Specialized.NameValueCollection" /> using the specified <see cref="T:System.Text.Encoding" />.</summary>
       <param name="query">The query string to parse.</param>
       <param name="encoding">The <see cref="T:System.Text.Encoding" /> to use.</param>
+      <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of query parameters and values.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="query" /> is <see langword="null" />.
-
 -or-
-
- <paramref name="encoding" /> is <see langword="null" />.</exception>
-      <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of query parameters and values.</returns>
+<paramref name="encoding" /> is <see langword="null" />.</exception>
     </member>
     <member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Int32,System.Int32,System.Text.Encoding)">
       <summary>Converts a URL-encoded byte array into a decoded string using the specified encoding object, starting at the specified position in the array, and continuing for the specified number of bytes.</summary>
       <param name="offset">The position in the byte to begin decoding.</param>
       <param name="count">The number of bytes to decode.</param>
       <param name="e">The <see cref="T:System.Text.Encoding" /> object that specifies the decoding scheme.</param>
+      <returns>A decoded string.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="bytes" /> is <see langword="null" />, but <paramref name="count" /> does not equal <see langword="0" />.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException">
         <paramref name="offset" /> is less than <see langword="0" /> or greater than the length of the <paramref name="bytes" /> array.
-
 -or-
-
- <paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
-      <returns>A decoded string.</returns>
+<paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
     </member>
     <member name="M:System.Web.HttpUtility.UrlDecode(System.Byte[],System.Text.Encoding)">
       <summary>Converts a URL-encoded byte array into a decoded string using the specified decoding object.</summary>
       <param name="bytes">The array of bytes to decode.</param>
       <param name="offset">The position in the byte array at which to begin decoding.</param>
       <param name="count">The number of bytes to decode.</param>
+      <returns>A decoded array of bytes.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="bytes" /> is <see langword="null" />, but <paramref name="count" /> does not equal <see langword="0" />.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException">
         <paramref name="offset" /> is less than <see langword="0" /> or greater than the length of the <paramref name="bytes" /> array.
-
 -or-
-
- <paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
-      <returns>A decoded array of bytes.</returns>
+<paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
     </member>
     <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String)">
       <summary>Converts a URL-encoded string into a decoded array of bytes.</summary>
       <param name="bytes">The array of bytes to encode.</param>
       <param name="offset">The position in the byte array at which to begin encoding.</param>
       <param name="count">The number of bytes to encode.</param>
+      <returns>An encoded array of bytes.</returns>
       <exception cref="T:System.ArgumentNullException">
         <paramref name="bytes" /> is <see langword="null" />, but <paramref name="count" /> does not equal <see langword="0" />.</exception>
       <exception cref="T:System.ArgumentOutOfRangeException">
         <paramref name="offset" /> is less than <see langword="0" /> or greater than the length of the <paramref name="bytes" /> array.
-
 -or-
-
- <paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
-      <returns>An encoded array of bytes.</returns>
+<paramref name="count" /> is less than <see langword="0" />, or <paramref name="count" /> + <paramref name="offset" /> is greater than the length of the <paramref name="bytes" /> array.</exception>
     </member>
     <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String)">
       <summary>Converts a string into a URL-encoded array of bytes.</summary>
     </member>
     <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String,System.Text.Encoding)">
       <summary>Converts a string into a URL-encoded array of bytes using the specified encoding object.</summary>
-      <param name="str">The string to encode.</param>
+      <param name="str">The string to encode</param>
       <param name="e">The <see cref="T:System.Text.Encoding" /> that specifies the encoding scheme.</param>
       <returns>An encoded array of bytes.</returns>
     </member>