using System.Collections.Generic;
using System.Xml.Serialization;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.IO.Compression;
[XmlRoot(IsNullable = false,ElementName = "IntegrationActionResponse",Namespace = "example.com")]
public class LoadIActionResponseModel
[XmlElement("ActionResults", Namespace = "")]
public LoadIActionResults ActionResults { get; set; }
public class LoadIActionResults
[XmlElement(ElementName = "SuccessCount", Namespace = "")]
public int SuccessCount { get; set; }
[XmlElement(ElementName = "FailureCount", Namespace = "")]
public int FailureCount { get; set; }
[XmlElement(ElementName = "ActionResult", Namespace = "")]
public ActionResultBase ActionResult { get; set; }
[XmlType(TypeName="ActionResult", Namespace = "example.com")]
[XmlInclude(typeof(ParameterizedIntegrationActionResult))]
public abstract class ActionResultBase
[XmlType(TypeName="ParameterizedIntegrationActionResult", Namespace = "example.com")]
public class ParameterizedIntegrationActionResult : ActionResultBase
[XmlElement(ElementName = "Status", Namespace = "")]
public string Status { get; set; }
[XmlElement(ElementName = "resultParams", Namespace = "")]
public LoadIActionResultParams resultParams {get; set;}
public class LoadIActionEntry
[XmlElement(ElementName = "key")]
public string Key { get; set; }
[XmlElement(ElementName = "value")]
public string Value { get; set; }
public class LoadIActionResultParams
[XmlElement(ElementName = "entry")]
public List<LoadIActionEntry> Entries { get; set; }
public static void Test()
var response = xml.LoadFromXml<LoadIActionResponseModel>();
var xml2 = response.GetXml();
Console.WriteLine("Re-serialized {0}:", response);
static string GetXml() => @"<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?>
<ns2:IntegrationActionResponse xmlns:ns2=""example.com"">
<SuccessCount>1</SuccessCount>
<FailureCount>0</FailureCount>
<ActionResult xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:type=""ns2:ParameterizedIntegrationActionResult"">
</ns2:IntegrationActionResponse>";
public static class XmlSerializationHelper
public static T LoadFromXml<T>(this string xmlString, XmlSerializer serial = null)
serial = serial ?? new XmlSerializer(typeof(T));
using (var reader = new StringReader(xmlString))
return (T)serial.Deserialize(reader);
public static string GetXml<T>(this T obj, bool omitStandardNamespaces)
return obj.GetXml(null, omitStandardNamespaces);
public static string GetXml<T>(this T obj, XmlSerializer serializer = null, bool omitStandardNamespaces = false)
XmlSerializerNamespaces ns = null;
if (omitStandardNamespaces)
ns = new XmlSerializerNamespaces();
using (var textWriter = new StringWriter())
var settings = new XmlWriterSettings() { Indent = true };
using (var xmlWriter = XmlWriter.Create(textWriter, settings))
(serializer ?? new XmlSerializer(obj.GetType())).Serialize(xmlWriter, obj, ns);
return textWriter.ToString();
public static string GetOuterXml(this XmlNode node, bool indent = true)
using (var textWriter = new StringWriter())
var settings = new XmlWriterSettings
OmitXmlDeclaration = true,
using (var xmlWriter = XmlWriter.Create(textWriter, settings))
return textWriter.ToString();
public static void Main()
Console.WriteLine("Environment version: {0} ({1}, {2})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , Environment.Version, Environment.OSVersion);
Console.WriteLine("Failed with unhandled exception: ");