Carrotware.CMS.Core.SiteExport.LoadComments C# (CSharp) Метод

LoadComments() публичный Метод

public LoadComments ( ) : void
Результат void
        public void LoadComments()
        {
            if (this.ThePages != null) {
                this.TheComments = new List<CommentExport>();
                foreach (ContentPageExport cpe in this.ThePages) {
                    this.TheComments = this.TheComments.Union(CommentExport.GetPageCommentExport(cpe.OriginalRootContentID)).ToList();
                }
            }
        }