PdfRpt.FluentInterface.PagesHeaderBuilder.CacheHeader C# (CSharp) Method

CacheHeader() public method

You can define different headers for each page. If all of the headers of the document's pages are the same, set this value to true, to optimize the performance and document size. Its default value is true.
public CacheHeader ( bool cache = true ) : void
cache bool true or false
return void
        public void CacheHeader(bool cache = true)
        {
            _pdfReport.DataBuilder.CacheHeader(cache);
        }