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:
John Hurliman
2008-10-30 16:54:17 +00:00
parent bad3108ddf
commit f53aee6fa8
22 changed files with 220 additions and 223 deletions

View File

@@ -47,7 +47,7 @@ namespace OpenMetaverse.StructuredData
/// <summary>
///
/// </summary>
public static partial class LLSDParser
public static partial class OSDParser
{
private const int initialBufferSize = 128;
private const int int32Length = 4;

View File

@@ -34,7 +34,7 @@ namespace OpenMetaverse.StructuredData
/// <summary>
///
/// </summary>
public static partial class LLSDParser
public static partial class OSDParser
{
private const string baseIndent = " ";

View File

@@ -628,7 +628,7 @@ namespace OpenMetaverse.StructuredData
public override string ToString()
{
return LLSDParser.SerializeLLSDNotationFormatted(this);
return OSDParser.SerializeLLSDNotationFormatted(this);
}
#region IDictionary Implementation
@@ -832,7 +832,7 @@ namespace OpenMetaverse.StructuredData
public override string ToString()
{
return LLSDParser.SerializeLLSDNotationFormatted(this);
return OSDParser.SerializeLLSDNotationFormatted(this);
}
#region IList Implementation

View File

@@ -36,7 +36,7 @@ namespace OpenMetaverse.StructuredData
/// <summary>
///
/// </summary>
public static partial class LLSDParser
public static partial class OSDParser
{
private static XmlSchema XmlSchema;
private static XmlTextReader XmlTextReader;