OSDN Git Service

資材グラフの描画を高速化する
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / HttpUtility.cs
1 // Copyright (c) 2015 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 //\r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //    http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 using System;\r
16 using System.Collections.Specialized;\r
17 \r
18 namespace KancolleSniffer\r
19 {\r
20     public class HttpUtility\r
21     {\r
22         public static NameValueCollection ParseQueryString(string query)\r
23         {\r
24             var r = new NameValueCollection();\r
25             var seg = UrlDecode(query).Split('&');\r
26             foreach (var st in seg)\r
27             {\r
28                 var pair = st.Split('=');\r
29                 if (pair.Length <= 0)\r
30                     continue;\r
31                 var key = pair[0].Trim('?', ' ');\r
32                 var val = pair[1].Trim();\r
33                 r.Add(key, val);\r
34             }\r
35             return r;\r
36         }\r
37 \r
38         public static string UrlDecode(string s)\r
39         {\r
40             return Uri.UnescapeDataString(s.Replace('+', ' '));\r
41         }\r
42     }\r
43 }