C# Class IrcDotNet.IrcValidateSslCertificateEventArgs

Provides data for the IrcClient.ValidateSslCertificate event.
Inheritance: System.EventArgs
Datei anzeigen Open project: IrcDotNet/IrcDotNet Class Usage Examples

Public Methods

Method Description
IrcValidateSslCertificateEventArgs ( X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors ) : System.Net.Security

Initializes a new instance of the IrcValidateSslCertificateEventArgs class.

Method Details

IrcValidateSslCertificateEventArgs() public method

Initializes a new instance of the IrcValidateSslCertificateEventArgs class.
public IrcValidateSslCertificateEventArgs ( X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors ) : System.Net.Security
certificate System.Security.Cryptography.X509Certificates.X509Certificate The certificate used to authenticate the remote party.
chain System.Security.Cryptography.X509Certificates.X509Chain The chain of certificate authorities.
sslPolicyErrors SslPolicyErrors The errors associated with the remote certificate.
return System.Net.Security