summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml188
1 files changed, 188 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml
new file mode 100755
index 0000000000..8c7869de0a
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Web.HttpUtility.xml
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.Web.HttpUtility</name>
+ </assembly>
+ <members>
+ <member name="T:System.Web.HttpUtility">
+ <summary>Provides methods for encoding and decoding URLs when processing Web requests. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Web.HttpUtility.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Web.HttpUtility"></see> class.</summary>
+ </member>
+ <member name="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String)">
+ <summary>Minimally converts a string to an HTML-encoded string.</summary>
+ <param name="s">The string to encode.</param>
+ <returns>An encoded string.</returns>
+ </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"></see> output stream.</summary>
+ <param name="s">The string to encode</param>
+ <param name="output">A <see cref="T:System.IO.TextWriter"></see> output stream.</param>
+ </member>
+ <member name="M:System.Web.HttpUtility.HtmlDecode(System.String)">
+ <summary>Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.</summary>
+ <param name="s">The string to decode.</param>
+ <returns>A decoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.HtmlDecode(System.String,System.IO.TextWriter)">
+ <summary>Converts a string that has been HTML-encoded into a decoded string, and sends the decoded string to a <see cref="T:System.IO.TextWriter"></see> output stream.</summary>
+ <param name="s">The string to decode.</param>
+ <param name="output">A <see cref="T:System.IO.TextWriter"></see> stream of output.</param>
+ </member>
+ <member name="M:System.Web.HttpUtility.HtmlEncode(System.Object)">
+ <summary>Converts an object's string representation into an HTML-encoded string, and returns the encoded string.</summary>
+ <param name="value">An object.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.HtmlEncode(System.String)">
+ <summary>Converts a string to an HTML-encoded string.</summary>
+ <param name="s">The string to encode.</param>
+ <returns>An encoded string.</returns>
+ </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"></see> stream of output.</summary>
+ <param name="s">The string to encode</param>
+ <param name="output">A <see cref="T:System.IO.TextWriter"></see> output stream.</param>
+ </member>
+ <member name="M:System.Web.HttpUtility.JavaScriptStringEncode(System.String)">
+ <summary>Encodes a string.</summary>
+ <param name="value">A string to encode.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.JavaScriptStringEncode(System.String,System.Boolean)">
+ <summary>Encodes a string.</summary>
+ <param name="value">A string to encode.</param>
+ <param name="addDoubleQuotes">A value that indicates whether double quotation marks will be included around the encoded string.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.ParseQueryString(System.String)">
+ <summary>Parses a query string into a <see cref="T:System.Collections.Specialized.NameValueCollection"></see> using <see cref="P:System.Text.Encoding.UTF8"></see> encoding.</summary>
+ <param name="query">The query string to parse.</param>
+ <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection"></see> of query parameters and values.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="query">query</paramref> is null.</exception>
+ </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"></see> using the specified <see cref="T:System.Text.Encoding"></see>.</summary>
+ <param name="query">The query string to parse.</param>
+ <param name="encoding">The <see cref="T:System.Text.Encoding"></see> to use.</param>
+ <returns>A <see cref="T:System.Collections.Specialized.NameValueCollection"></see> of query parameters and values.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="query">query</paramref> is null. - or - <paramref name="encoding">encoding</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlDecode(System.String,System.Text.Encoding)">
+ <summary>Converts a URL-encoded string into a decoded string, using the specified encoding object.</summary>
+ <param name="str"></param>
+ <param name="e">The <see cref="T:System.Text.Encoding"></see> that specifies the decoding scheme.</param>
+ <returns>A decoded string.</returns>
+ </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="bytes">The array of bytes to decode.</param>
+ <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"></see> object that specifies the decoding scheme.</param>
+ <returns>A decoded string.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null, but <paramref name="count">count</paramref> does not equal 0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> is less than 0 or greater than the length of the <paramref name="bytes">bytes</paramref> array. - or - <paramref name="count">count</paramref> is less than 0, or <paramref name="count">count</paramref> + <paramref name="offset">offset</paramref> is greater than the length of the <paramref name="bytes">bytes</paramref> array.</exception>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlDecode(System.String)">
+ <summary>Converts a string that has been encoded for transmission in a URL into a decoded string.</summary>
+ <param name="str">The string to decode.</param>
+ <returns>A decoded string.</returns>
+ </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="e">The <see cref="T:System.Text.Encoding"></see> that specifies the decoding scheme.</param>
+ <returns>A decoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[])">
+ <summary>Converts a URL-encoded array of bytes into a decoded array of bytes.</summary>
+ <param name="bytes">The array of bytes to decode.</param>
+ <returns>A decoded array of bytes.</returns>
+ </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="str">The string to decode.</param>
+ <returns>A decoded array of bytes.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.String,System.Text.Encoding)">
+ <summary>Converts a URL-encoded string into a decoded array of bytes using the specified decoding object.</summary>
+ <param name="str">The string to decode.</param>
+ <param name="e">The <see cref="T:System.Text.Encoding"></see> object that specifies the decoding scheme.</param>
+ <returns>A decoded array of bytes.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlDecodeToBytes(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts a URL-encoded array of bytes into a decoded array of bytes, starting at the specified position in the array and continuing for the specified number of bytes.</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">bytes</paramref> is null, but <paramref name="count">count</paramref> does not equal 0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> is less than 0 or greater than the length of the <paramref name="bytes">bytes</paramref> array. - or - <paramref name="count">count</paramref> is less than 0, or <paramref name="count">count</paramref> + <paramref name="offset">offset</paramref> is greater than the length of the <paramref name="bytes">bytes</paramref> array.</exception>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts a byte array into a URL-encoded string, starting at the specified position in the array and continuing for the specified number 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 string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncode(System.String,System.Text.Encoding)">
+ <summary>Encodes a URL string using the specified encoding object.</summary>
+ <param name="str"></param>
+ <param name="e"></param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncode(System.Byte[])">
+ <summary>Converts a byte array into an encoded URL string.</summary>
+ <param name="bytes">The array of bytes to encode.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncode(System.String)">
+ <summary>Encodes a URL string.</summary>
+ <param name="str">The text to encode.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[])">
+ <summary>Converts an array of bytes into a URL-encoded array of bytes.</summary>
+ <param name="bytes">The array of bytes to encode.</param>
+ <returns>An encoded array of bytes.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.String)">
+ <summary>Converts a string into a URL-encoded array of bytes.</summary>
+ <param name="str">The string to encode.</param>
+ <returns>An encoded array of bytes.</returns>
+ </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="e">The <see cref="T:System.Text.Encoding"></see> that specifies the encoding scheme.</param>
+ <returns>An encoded array of bytes.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncodeToBytes(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts an array of bytes into a URL-encoded array of bytes, starting at the specified position in the array and continuing for the specified number 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">bytes</paramref> is null, but <paramref name="count">count</paramref> does not equal 0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset">offset</paramref> is less than 0 or greater than the length of the <paramref name="bytes">bytes</paramref> array. - or - <paramref name="count">count</paramref> is less than 0, or <paramref name="count">count</paramref> + <paramref name="offset">offset</paramref> is greater than the length of the <paramref name="bytes">bytes</paramref> array.</exception>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncodeUnicode(System.String)">
+ <summary>Converts a string into a Unicode string.</summary>
+ <param name="str">The string to convert.</param>
+ <returns>A Unicode string in %<paramref name="UnicodeValue">UnicodeValue</paramref> notation.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlEncodeUnicodeToBytes(System.String)">
+ <summary>Converts a Unicode string into an array of bytes.</summary>
+ <param name="str">The string to convert.</param>
+ <returns>A byte array.</returns>
+ </member>
+ <member name="M:System.Web.HttpUtility.UrlPathEncode(System.String)">
+ <summary>Do not use; intended only for browser compatibility. Use <see cref="M:System.Web.HttpUtility.UrlEncode(System.String)"></see>.</summary>
+ <param name="str"></param>
+ <returns>The encoded text.</returns>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file