Example #1
0
        public static CommentsDocument Parse(XDocument xmlDoc, XmlNamespaceManager namespaceManager)
        {
            CommentsDocument commentsDoc = new CommentsDocument();

            commentsDoc.comments = CT_Comments.Parse(xmlDoc.Document.Root, namespaceManager);
            return(commentsDoc);
        }
Example #2
0
        private CT_ExtensionList extLstField = null;                    // optional field

        public static CT_Comments Parse(XElement node, XmlNamespaceManager namespaceManager)
        {
            if (node == null)
            {
                return(null);
            }
            CT_Comments ctObj = new CT_Comments();

            foreach (XElement childNode in node.ChildElements())
            {
                if (childNode.Name.LocalName == "authors")
                {
                    ctObj.authors = CT_Authors.Parse(childNode, namespaceManager);
                }
                else if (childNode.Name.LocalName == "commentList")
                {
                    ctObj.commentList = CT_CommentList.Parse(childNode, namespaceManager);
                }
                else if (childNode.Name.LocalName == "extLst")
                {
                    ctObj.extLst = CT_ExtensionList.Parse(childNode, namespaceManager);
                }
            }
            return(ctObj);
        }
Example #3
0
 public void SetComments(CT_Comments comments)
 {
     this.comments = comments;
 }
Example #4
0
 public CommentsDocument(CT_Comments comments)
 {
     this.comments = comments;
 }