Aqueduct.Helpers.XmlHelpers.GetBlankXmlDoc C# (CSharp) Method

GetBlankXmlDoc() private static method

private static GetBlankXmlDoc ( ) : XmlDocument
return System.Xml.XmlDocument
        private static XmlDocument GetBlankXmlDoc ()
        {
            XmlDocument xmlDocument = new XmlDocument ();
            xmlDocument.AppendChild (xmlDocument.CreateXmlDeclaration ("1.0", null, null));
            xmlDocument.AppendChild (xmlDocument.CreateElement ("root"));

            return xmlDocument;
        }