Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2016-11-22 22:46:30 +0300
committerGitHub <noreply@github.com>2016-11-22 22:46:30 +0300
commit3cb05504c5c81e2cfb552291285bce088ff785cf (patch)
tree9c4c7a84791b55c9cde150f4e923e2dd5c6981c9 /src/System.Runtime.Extensions/ref
parent0faaf7e308524fd905661e8905022bca61897aad (diff)
Port System.Net.WebUtility missing members (#13875)
* Port System.Net.WebUtility missing members
Diffstat (limited to 'src/System.Runtime.Extensions/ref')
-rw-r--r--src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs
index 6d4e39e614..d5d8c1d14e 100644
--- a/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs
+++ b/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs
@@ -1532,7 +1532,9 @@ namespace System.Net
public static partial class WebUtility
{
public static string HtmlDecode(string value) { throw null; }
+ public static void HtmlDecode(string value, System.IO.TextWriter output) { }
public static string HtmlEncode(string value) { throw null; }
+ public static void HtmlEncode(string value, System.IO.TextWriter output) { }
public static string UrlDecode(string encodedValue) { throw null; }
public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count) { throw null; }
public static string UrlEncode(string value) { throw null; }