Renaming LLSDParser to OSDParser since it will encompass more than just LLSD parsing in the future
git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2322 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -62,7 +62,7 @@ namespace OpenMetaverse.Capabilities
|
||||
|
||||
public void StartRequest(OSD llsd)
|
||||
{
|
||||
byte[] postData = LLSDParser.SerializeLLSDXmlBytes(llsd);
|
||||
byte[] postData = OSDParser.SerializeLLSDXmlBytes(llsd);
|
||||
StartRequest(postData, null);
|
||||
}
|
||||
|
||||
@@ -137,7 +137,7 @@ namespace OpenMetaverse.Capabilities
|
||||
{
|
||||
if (e.Error == null)
|
||||
{
|
||||
OSD result = LLSDParser.DeserializeLLSDXml(e.Result);
|
||||
OSD result = OSDParser.DeserializeLLSDXml(e.Result);
|
||||
|
||||
try { OnComplete(this, result, e.Error); }
|
||||
catch (Exception ex) { Logger.Log(ex.Message, Helpers.LogLevel.Error, ex); }
|
||||
@@ -188,7 +188,7 @@ namespace OpenMetaverse.Capabilities
|
||||
{
|
||||
if (e.Error == null)
|
||||
{
|
||||
OSD result = LLSDParser.DeserializeLLSDXml(e.Result);
|
||||
OSD result = OSDParser.DeserializeLLSDXml(e.Result);
|
||||
|
||||
try { OnComplete(this, result, e.Error); }
|
||||
catch (Exception ex) { Logger.Log(ex.Message, Helpers.LogLevel.Error, ex); }
|
||||
|
||||
Reference in New Issue
Block a user