change osrequest Query back to hashtable, add QueryAsDictionary as new better option. (recover compatibily with current external modules

This commit is contained in:
UbitUmarov
2020-04-13 14:24:22 +01:00
parent 745a469af8
commit e0ba96055c
3 changed files with 51 additions and 10 deletions

View File

@@ -51,7 +51,8 @@ namespace OpenSim.Framework.Servers.HttpServer
bool IsSecured { get; }
bool KeepAlive { get; }
NameValueCollection QueryString { get; }
Dictionary<string, string> Query { get; }
Hashtable Query { get; }
Dictionary<string, string> QueryAsDictionary { get; } //faster than Query
string RawUrl { get; }
IPEndPoint RemoteIPEndPoint { get; }
Uri Url { get; }