2007-11-06 09:26:10 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2007-11-21 23:50:05 +00:00
|
|
|
namespace libsecondlife.StructuredData
|
2007-11-06 09:26:10 +00:00
|
|
|
{
|
|
|
|
|
public static partial class LLSDParser
|
|
|
|
|
{
|
|
|
|
|
public static object DeserializeBinary(byte[] binaryData)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static byte[] SerializeBinary(object data)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|