IronPDF:CS0618:Class 'IronPdf.HtmlHeaderFooter' 已过时:'Please use the newer API class IronPdf.HtmlHeaderFooter'

IronPDF: CS0618: Class 'IronPdf.HtmlHeaderFooter' is obsolete: 'Please use the newer API class IronPdf.HtmlHeaderFooter'

自最新版本 (2022.4.0.5575) 以来,我在 IronPdf 中的 HtmlHeaderFooter class 上收到过时警告:

CS0618:Class 'IronPdf.HtmlHeaderFooter' 已过时:'Please use the newer API class IronPdf.HtmlHeaderFooter'

using IronPdf;

namespace MyNamespace
{
    public class IronPdfHelper
    {
        public void SomeMethod()
        {
            var x = new HtmlHeaderFooter(); // CS0618 warning here
        }
    }
}

据我所知,我使用的是正确的 class。没有其他的 HtmlHeaderFooter class。这是否意味着过时的消息是错误的(错误)?

是的,这是一个错误 - IronPdf 2022.4.5575 中错误的弃用消息

已在 2022-05-02 发布的最新版本 IronPdf 2022.5.5596 中解决