PdfRpt.Core.Security.CustomPdfReader.CustomPdfReader C# (CSharp) Method

CustomPdfReader() public method

CustomPdfReader to be able to work with streams.
public CustomPdfReader ( Stream isp, X509Certificate certificate, ICipherParameters certificateKey ) : System
isp Stream
certificate Org.BouncyCastle.X509.X509Certificate
certificateKey ICipherParameters
return System
        public CustomPdfReader(Stream isp, X509Certificate certificate, ICipherParameters certificateKey)
        {
            this.certificate = certificate;
            this.certificateKey = certificateKey;
            tokens = new PRTokeniser(new RandomAccessFileOrArray(isp));
            ReadPdf();
        }
CustomPdfReader