Merge pull request #1502 from madrang/SafeHandle.CloseTestDispose
[mono.git] / mcs / class / System / System.Net / WebUtility.cs
1 //\r
2 // System.Net.WebUtility\r
3 //\r
4 // Authors: Mike Kestner  <mkestner@novell.com>\r
5 //          Marek Safar (marek.safar@gmail.com)\r
6 //\r
7 // Copyright (C) 2014 Xamarin Inc (http://www.xamarin.com)\r
8 //\r
9 // Permission is hereby granted, free of charge, to any person obtaining\r
10 // a copy of this software and associated documentation files (the\r
11 // "Software"), to deal in the Software without restriction, including\r
12 // without limitation the rights to use, copy, modify, merge, publish,\r
13 // distribute, sublicense, and/or sell copies of the Software, and to\r
14 // permit persons to whom the Software is furnished to do so, subject to\r
15 // the following conditions:\r
16 // \r
17 // The above copyright notice and this permission notice shall be\r
18 // included in all copies or substantial portions of the Software.\r
19 // \r
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
27 //\r
28 \r
29 using System;\r
30 using System.IO;\r
31 using System.Runtime.Serialization;\r
32 \r
33 namespace System.Net \r
34 {\r
35 \r
36         public static class WebUtility \r
37         {\r
38                 \r
39                 public static string HtmlDecode (string value)\r
40                 {\r
41                         if (string.IsNullOrEmpty (value))\r
42                                 return value;\r
43 \r
44                         return HttpUtility.HtmlDecode (value);\r
45                 }\r
46                 \r
47                 public static void HtmlDecode (string value, TextWriter output)\r
48                 {\r
49                         if (output == null)\r
50                                 throw new ArgumentNullException ("output");\r
51 \r
52                         output.Write (HtmlDecode (value));\r
53                 }\r
54                 \r
55                 public static string HtmlEncode (string value)\r
56                 {\r
57                         return HttpUtility.HtmlEncode (value);\r
58                 }\r
59                 \r
60                 public static void HtmlEncode (string value, TextWriter output)\r
61                 {\r
62                         if (output == null)\r
63                                 throw new ArgumentNullException ("output");\r
64 \r
65                         output.Write (HtmlEncode (value));\r
66                 }\r
67                 \r
68                 public static string UrlDecode (string encodedValue)\r
69                 {\r
70                         return HttpUtility.UrlDecode (encodedValue);\r
71                 }\r
72                 \r
73                 public static byte[] UrlDecodeToBytes (\r
74                         byte[] encodedValue, int offset, int count)\r
75                 {\r
76                         return HttpUtility.UrlDecodeToBytes (encodedValue, offset, count);\r
77                 }\r
78                 \r
79                 public static string UrlEncode (string value)\r
80                 {\r
81                         return HttpUtility.UrlEncode (value);\r
82                 }\r
83                 \r
84                 public static byte[] UrlEncodeToBytes (\r
85                         byte[] value, int offset, int count)\r
86                 {\r
87                         return HttpUtility.UrlEncodeToBytes (value, offset, count);\r
88                 }\r
89         }\r
90 }\r