Files
Umbraco-CMS/src/umbraco.editorControls/imagecropper/Helper.cs
2013-09-25 19:03:05 +10:00

24 lines
667 B
C#

using System;
using System.IO;
using System.Xml.Serialization;
namespace umbraco.editorControls.imagecropper
{
[Obsolete("IDataType and all other references to the legacy property editors are no longer used this will be removed from the codebase in future versions")]
class Helper
{
public static string SerializeToString(object obj)
{
XmlSerializer serializer = new XmlSerializer(obj.GetType());
using (StringWriter writer = new StringWriter())
{
serializer.Serialize(writer, obj);
return writer.ToString();
}
}
}
}