* Added JSON library to parse LLSD fields in the login reply
* Added fields in Avatar to hold the parsed data from login * CoarseLocationUpdate packets handled internally * Added Network.LoginValues hashtable, removed second parameter from .Login() * Updated examples to reflect LoginValues / Login() change git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@39 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
36
libsecondlife-cs/JSONlib/JSONFacade.cs
Normal file
36
libsecondlife-cs/JSONlib/JSONFacade.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Specialized;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
|
||||
namespace Nii.JSON
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for JsonFacade.
|
||||
/// </summary>
|
||||
public sealed class JsonFacade
|
||||
{
|
||||
/// <summary>
|
||||
/// Parse a Hashtable and return a JSON formatted string
|
||||
/// </summary>
|
||||
/// <param name="idict"></param>
|
||||
/// <returns></returns>
|
||||
public static string toJSON(IDictionary idict)
|
||||
{
|
||||
JSONObject jsob = new JSONObject(idict);
|
||||
return jsob.ToString();
|
||||
}
|
||||
/// <summary>
|
||||
/// Parse JSON formatted string and return a Hashtable
|
||||
/// </summary>
|
||||
/// <param name="sJSON"></param>
|
||||
/// <returns></returns>
|
||||
public static IDictionary fromJSON(string sJSON)
|
||||
{
|
||||
JSONObject jsob = new JSONObject(sJSON);
|
||||
IDictionary idict = jsob.getDictionary();
|
||||
return idict;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user