DynamicRest.StandardResultBuilder.GetResultFromXml C# (CSharp) Method

GetResultFromXml() public static method

public static GetResultFromXml ( string responseText ) : object
responseText string
return object
        public static object GetResultFromXml(string responseText)
        {
            var xmlDocument = XDocument.Parse(responseText);
            dynamic result = new XmlNode(xmlDocument.Root);
            return result;
        }