CAPNet.XmlParser.Parse C# (CSharp) Method

Parse() public static method

public static Parse ( XmlDocument xml ) : Alert
xml System.Xml.XmlDocument
return Alert
        public static Alert Parse(XmlDocument xml)
        {
            var alert = ParseInternal(xml);
            return alert;
        }

Same methods

XmlParser::Parse ( string xml ) : Alert