PdfCertificate constructor

PdfCertificate(
  1. List<int> certificateBytes,
  2. String password
)

Initializes a new instance of the PdfCertificate class

Implementation

PdfCertificate(List<int> certificateBytes, String password) {
  _initializeCertificate(certificateBytes, password);
}