using System; using System.Security.Cryptography.X509Certificates; namespace System.Net.Security { /// Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication. /// A value that determines whether the specified certificate is accepted for authentication. /// An object that contains state information for this validation. /// The certificate used to authenticate the remote party. /// The chain of certificate authorities associated with the remote certificate. /// One or more errors associated with the remote certificate. // Token: 0x02000332 RID: 818 // (Invoke) Token: 0x06001CA1 RID: 7329 public delegate bool RemoteCertificateValidationCallback(object sender, X509Certificate certificate, global::System.Security.Cryptography.X509Certificates.X509Chain chain, SslPolicyErrors sslPolicyErrors); }