OpcCertificateQueryInstanceEventArgs Class

Namespace: Opc.UaFx
Assemblies: Opc.UaFx.Advanced.dll

Provides the event data for the QueryInstance event.

C#

public class OpcCertificateQueryInstanceEventArgs : EventArgs


Inheritance ObjectEventArgs › OpcCertificateQueryInstanceEventArgs

Name Description
OpcCertificateQueryInstanceEventArgs(Byte) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the rawData of the certificate to load when creating the Cryptography.X509Certificates.X509Certificate2 instance representing the contents of the certificate data.
OpcCertificateQueryInstanceEventArgs(Byte, String) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the rawData of the certificate to load when creating the Cryptography.X509Certificates.X509Certificate2 instance (using the password specified) representing the contents of the certificate data.
OpcCertificateQueryInstanceEventArgs(Byte, String, Cryptography.X509Certificates.X509KeyStorageFlags) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the rawData of the certificate to load when creating the Cryptography.X509Certificates.X509Certificate2 instance (using the password and keyStorage flags specified) representing the contents of the certificate data.
OpcCertificateQueryInstanceEventArgs(String) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the path of the certificate file to load when creating the Cryptography.X509Certificates.X509Certificate2 instance representing the contents of the certificate file.
OpcCertificateQueryInstanceEventArgs(String, String) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the path of the certificate file to load when creating the Cryptography.X509Certificates.X509Certificate2 instance (using the password specified) representing the contents of the certificate file.
OpcCertificateQueryInstanceEventArgs(String, String, Cryptography.X509Certificates.X509KeyStorageFlags) Initializes a new instance of the OpcCertificateQueryInstanceEventArgs class using the path of the certificate file to load when creating the Cryptography.X509Certificates.X509Certificate2 instance (using the password and keyStorage flags specified) representing the contents of the certificate file.
Name Description
Certificate Gets or sets the Cryptography.X509Certificates.X509Certificate2 instance created either from the Path or RawData while using the Password and the KeyStorage flags considering custom, platform and operating system related restrictions.
KeyStorage Gets the Cryptography.X509Certificates.X509KeyStorageFlags indicating the way the key in the certificate is to be stored after the certificate has been loaded.
Password Gets the password to use when reading the certificate data.
Path Gets the full qualified path of the certificate file to load.
RawData Gets the binary information of the certificate to load.