2019-06-30 22:01:19 +00:00
|
|
|
|
using System.Xml;
|
|
|
|
|
using RobloxFiles.DataTypes;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles.XmlFormat.PropertyTokens
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
2019-06-30 22:01:19 +00:00
|
|
|
|
public class ProtectedStringToken : IXmlPropertyToken
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
2019-06-30 22:01:19 +00:00
|
|
|
|
public string Token => "ProtectedString";
|
2019-01-30 06:36:56 +00:00
|
|
|
|
|
2019-05-17 12:08:06 +00:00
|
|
|
|
public bool ReadProperty(Property prop, XmlNode token)
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
2019-06-30 22:01:19 +00:00
|
|
|
|
ProtectedString contents = token.InnerText;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
prop.Type = PropertyType.String;
|
|
|
|
|
prop.Value = contents;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
|
|
|
|
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
|
|
|
|
|
{
|
2019-06-30 22:01:19 +00:00
|
|
|
|
string value = prop.CastValue<ProtectedString>();
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
|
|
|
|
if (value.Contains("\r") || value.Contains("\n"))
|
|
|
|
|
{
|
|
|
|
|
XmlCDataSection cdata = doc.CreateCDataSection(value);
|
|
|
|
|
node.AppendChild(cdata);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
node.InnerText = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|