Opc.Ua.X509CRL.X509CRL C# (CSharp) Method

X509CRL() public method

Loads a CRL from a file.
public X509CRL ( string filePath ) : System
filePath string
return System
        public X509CRL(string filePath)
        {
            RawData = File.ReadAllBytes(filePath);
            Initialize(RawData);
        }

Same methods

X509CRL::X509CRL ( byte crl ) : System