Attempting to reach parsing parity with xmlrpc on LLSD login code. Appears Second Life is broken, but this should do for now...
This commit is contained in:
@@ -893,6 +893,11 @@ namespace OpenMetaverse.StructuredData
|
||||
return new OSDMap(new Dictionary<string, OSD>(_mMap));
|
||||
}
|
||||
|
||||
public Hashtable ToHashtable()
|
||||
{
|
||||
return new Hashtable(_mMap);
|
||||
}
|
||||
|
||||
#region IDictionary Implementation
|
||||
|
||||
public int Count => _mMap.Count;
|
||||
@@ -1125,6 +1130,11 @@ namespace OpenMetaverse.StructuredData
|
||||
return OSDParser.SerializeJsonString(this, true);
|
||||
}
|
||||
|
||||
public ArrayList ToArrayList()
|
||||
{
|
||||
return new ArrayList(_mArray);
|
||||
}
|
||||
|
||||
#region IList Implementation
|
||||
|
||||
public int Count => _mArray.Count;
|
||||
|
||||
Reference in New Issue
Block a user