ScrewTurn.Wiki.ExtendedPageInfo.ExtendedPageInfo C# (CSharp) Method

ExtendedPageInfo() public method

Initializes a new instance of the T:ExtendedPageInfo class.
public ExtendedPageInfo ( System.PageInfo pageInfo, string title, System.DateTime modificationDateTime, string creator, string lastAuthor ) : System
pageInfo System.PageInfo The object.
title string The title of the page.
modificationDateTime System.DateTime The modification date/time.
creator string The creator.
lastAuthor string The last author.
return System
        public ExtendedPageInfo(PageInfo pageInfo, string title, DateTime modificationDateTime, string creator, string lastAuthor)
        {
            this.pageInfo = pageInfo;
            this.title = FormattingPipeline.PrepareTitle(title, false, FormattingContext.PageContent, pageInfo);
            this.modificationDateTime = modificationDateTime;
            this.creator = creator;
            this.lastAuthor = lastAuthor;
            this.messageCount = Pages.GetMessageCount(pageInfo);
        }
ExtendedPageInfo