Implement an osParseJSON method useful for handling simple JSON returns
from http requests.  This will only work in C# at this point.
This commit is contained in:
Sean Dague
2008-09-12 15:04:13 +00:00
parent 8d6096b815
commit 1b333a0f58
3 changed files with 197 additions and 0 deletions

View File

@@ -2035,6 +2035,11 @@ namespace OpenSim.Region.ScriptEngine.Common
}
public System.Collections.Hashtable osParseJSON(string JSON)
{
return m_LSL_Functions.osParseJSON(JSON);
}
//for testing purposes only
public void osSetParcelMediaTime(double time)
{