Docu.Parsing.Comments.CommentParser.ParseNode C# (CSharp) Method

ParseNode() public method

public ParseNode ( XmlNode node ) : IList
node System.Xml.XmlNode
return IList
        public IList<Comment> ParseNode(XmlNode node)
        {
            return Parse(node.ChildNodes, new ParseOptions());
        }

Same methods

CommentParser::ParseNode ( XmlNode node, Docu.Parsing.Comments.ParseOptions options ) : IList