From d04cd7a6c4e7c9da6cc5e2ff0ff2e6be01f8b844 Mon Sep 17 00:00:00 2001 From: sta Date: Fri, 17 Aug 2018 19:49:29 +0900 Subject: [PATCH] [Modify] Edit it --- websocket-sharp/Net/QueryStringCollection.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/websocket-sharp/Net/QueryStringCollection.cs b/websocket-sharp/Net/QueryStringCollection.cs index 12ecbd34..9d47e08d 100644 --- a/websocket-sharp/Net/QueryStringCollection.cs +++ b/websocket-sharp/Net/QueryStringCollection.cs @@ -48,6 +48,8 @@ namespace WebSocketSharp.Net { internal sealed class QueryStringCollection : NameValueCollection { + #region Public Methods + public static QueryStringCollection Parse (string query) { return Parse (query, Encoding.UTF8); @@ -126,5 +128,7 @@ namespace WebSocketSharp.Net return buff.ToString (); } + + #endregion } }