Exemple #1
0
 /// <summary>
 /// Method called to try and get the comment forum list. 
 /// </summary>
 private void TryGetCommentForumList()
 {
     CommentForumListBuilder commentForumListBuilder = new CommentForumListBuilder(InputContext);
     commentForumListBuilder.TryGetCommentForumList();
     //RootElement.AppendChild(ImportNode(commentForumListBuilder.RootElement.FirstChild));
     AddInside(RootElement, commentForumListBuilder);
 }
Exemple #2
0
        private void GetRelatedCommentForumList()
        {
            CommentForumListBuilder commentForumListBuilder = new CommentForumListBuilder(InputContext);
            commentForumListBuilder.GetCommentListsFromUidPrefix();
			//commentForumListBuilder.SkipUrlProcessing = true;
            AddInside(RootElement, commentForumListBuilder);
        }