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

@@ -137,11 +137,19 @@ namespace OpenSim.Tests.Common
}
}
public Dictionary<string,string> Query
public Hashtable Query
{
get
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
}
public Dictionary<string, string> QueryAsDictionary
{
get
{
throw new NotImplementedException();
}
}