Opc.Ua.CertificateIdentifier.Paste C# (CSharp) Method

Paste() private method

Updates the object from another object (usage is not updated).
private Paste ( CertificateIdentifier certificate ) : void
certificate CertificateIdentifier The certificate.
return void
        private void Paste(CertificateIdentifier certificate)
        {
            this.SubjectName = certificate.SubjectName;
            this.Thumbprint = certificate.Thumbprint;
            this.RawData = certificate.RawData;
            this.ValidationOptions = certificate.ValidationOptions;
            this.Certificate = certificate.Certificate;
        }