Carrotware.CMS.Core.SiteExport.SiteExport C# (CSharp) Method

SiteExport() public method

public SiteExport ( ) : System
return System
        public SiteExport()
        {
            this.CarrotCakeVersion = SiteData.CarrotCakeCMSVersion;
            this.ExportDate = DateTime.UtcNow;

            this.TheSite = new SiteData();
            this.ThePages = new List<ContentPageExport>();

            this.TheCategories = new List<ContentCategory>();
            this.TheTags = new List<ContentTag>();
            this.TheSnippets = new List<ContentSnippet>();
        }

Same methods

SiteExport::SiteExport ( System.Guid siteID ) : System
SiteExport::SiteExport ( System.Guid siteID, ExportType exportWhat ) : System
SiteExport::SiteExport ( SiteData s, List pages ) : System