Opc.Ua.CertificateIdentifier.Paste C# (CSharp) 메소드

Paste() 개인적인 메소드

Updates the object from another object (usage is not updated).
private Paste ( CertificateIdentifier certificate ) : void
certificate CertificateIdentifier The certificate.
리턴 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;
        }