|
8
|
|
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
private static readonly Dictionary<Type, XmlSerializer> serialisers = new Dictionary();Dictionary<Type, XmlSerializer>();
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
XmlSerializer serialiser;
var type = typeof(T);
if (!serialisers.ContainsKey(type))
{
serialiser = new XmlSerializer(type);
serialisers.Add(type, serialiser);
}
else
{
serialiser = serialisers[type];
}
string xml;
using (var writer = new StringWriter())
{
serialiser.Serialize(writer, objectToSerialise);
xml = writer.ToString();
}
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
XmlSerializer serialiser;
var type = typeof(T);
if (!serialisers.ContainsKey(type))
{
serialiser = new XmlSerializer(type);
serialisers.Add(type, serialiser);
}
else
{
serialiser = serialisers[type];
}
T newObject;
using (var reader = new StringReader(xml))
{
try { newObject = (T)serialiser.Deserialize(reader); }
catch { return null; } // Could not be deserialized to this type.
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
7
|
|
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
private static readonly Dictionary serialisers = new Dictionary();
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
XmlSerializer serialiser;
var type = typeof(T);
if (!serialisers.ContainsKey(type))
{
serialiser = new XmlSerializer(typeof(T))XmlSerializer(type);
serialisers.Add(type, serialiser);
}
else
{
serialiser = serialisers[type];
}
string xml;
using (var writer = new StringWriter())
{
serialiser.Serialize(writer, objectToSerialise);
xml = writer.ToString();
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
XmlSerializer serialiser;
var type = typeof(T);
if (!serialisers.ContainsKey(type))
{
serialiser = new XmlSerializer(typeof(T))XmlSerializer(type);
serialisers.Add(type, serialiser);
}
else
{
serialiser = serialisers[type];
}
T newObject;
using (var reader = new StringReader(xml))
{
try { newObject = (T)serialiser.Deserialize(reader); }
catch { return null; } // Could not be deserialized to this type.
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
6
|
|
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var writer = new StringWriter())
{
serialiser.Serialize(writer, objectToSerialise);
xml = writer.ToString();
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var reader = new StringReader(xml))
{
try { newObject = serialiser.Deserialize(reader) as T(T)serialiser.Deserialize(reader); }
catch { return null; } // Could not be deserialized to this type.
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
5
|
|
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var writer = new StringWriter())
{
serialiser.Serialize(writer, objectToSerialise);
xml = writer.ToString();
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var reader = new StringReader(xml))
{
try { newObject = (T)serialiser.Deserialize(reader); }
catch { return nullserialiser.Deserialize(reader) as T;
} // Could not be deserialized to this type.
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
4
|
|
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var memStream = new MemoryStream())
{
using (var xmlWriter writer = new XmlTextWriter(memStream, Encoding.UTF8)StringWriter())
{
serialiser.Serialize(xmlWriterserialiser.Serialize(writer, objectToSerialise);
xml = Encoding.UTF8.GetString(memStream.GetBuffer())writer.ToString();
}
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var stringReader reader = new StringReader(xml))
{
using (var xmlReader = new XmlTextReader(stringReader))
{
try { newObject = serialiser.Deserialize(xmlReader) as T;
(T)serialiser.Deserialize(reader); }
catch (InvalidOperationException) // String passed is not Xml, return null
{ return null; } }
// Could not be deserialized to this type.
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
3
|
|
edited Nov 11 '08 at 7:12
|
By all means put this in the codeplex project.
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var memStream = new MemoryStream())
{
using (var xmlWriter = new XmlTextWriter(memStream, Encoding.UTF8))
{
serialiser.Serialize(xmlWriter, objectToSerialise);
xml = Encoding.UTF8.GetString(memStream.GetBuffer());
}
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var stringReader = new StringReader(xml))
{
using (var xmlReader = new XmlTextReader(stringReader))
{
try
{
newObject = serialiser.Deserialize(xmlReader) as T;
}
catch (InvalidOperationException) // String passed is not Xml, return null
{
return null;
}
}
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Nov 9 '08 at 18:51
|
|
|
|
|
|
2
|
|
|
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var memStream = new MemoryStream())
{
using (var xmlWriter = new XmlTextWriter(memStream, Encoding.UTF8))
{
serialiser.Serialize(xmlWriter, objectToSerialise);
xml = Encoding.UTF8.GetString(memStream.GetBuffer());
}
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var stringReader = new StringReader(xml))
{
using (var xmlReader = new XmlTextReader(stringReader))
{
try
{
newObject = serialiser.Deserialize(xmlReader) as T;
}
catch (InvalidOperationException) // String passed is not Xml, return null
{
return null;
}
}
}
return newObject;
}
When building the serialisation I had a help from an online example - but cannot remeber where it is...
|
|
|
|
1
|
|
answered Nov 7 '08 at 7:11
|
Serialising / Deserialising objects to Xml:
/// <summary>Serialises an object of type T in to an xml string</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="objectToSerialise">Object to serialise</param>
/// <returns>A string that represents Xml, empty oterwise</returns>
public static string XmlSerialise<T>(this T objectToSerialise) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
string xml;
using (var memStream = new MemoryStream())
{
using (var xmlWriter = new XmlTextWriter(memStream, Encoding.UTF8))
{
serialiser.Serialize(xmlWriter, objectToSerialise);
xml = Encoding.UTF8.GetString(memStream.GetBuffer());
}
}
xml = xml.Substring(xml.IndexOf(Convert.ToChar(60)));
xml = xml.Substring(0, (xml.LastIndexOf(Convert.ToChar(62)) + 1));
return xml;
}
/// <summary>Deserialises an xml string in to an object of Type T</summary>
/// <typeparam name="T">Any class type</typeparam>
/// <param name="xml">Xml as string to deserialise from</param>
/// <returns>A new object of type T is successful, null if failed</returns>
public static T XmlDeserialise<T>(this string xml) where T : class, new()
{
var serialiser = new XmlSerializer(typeof(T));
T newObject;
using (var stringReader = new StringReader(xml))
{
using (var xmlReader = new XmlTextReader(stringReader))
{
try
{
newObject = serialiser.Deserialize(xmlReader) as T;
}
catch (InvalidOperationException) // String passed is not Xml, return null
{
return null;
}
}
}
return newObject;
}
|
|
|