using System; using System.Security.Cryptography.X509Certificates; using Cpp2IlInjected; namespace System.Net.Security { /// Verifies the remote Secure Sockets Layer (SSL) certificate used 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. /// A value that determines whether the specified certificate is accepted for authentication. // Token: 0x020002F3 RID: 755 // (Invoke) Token: 0x06001424 RID: 5156 [Token(Token = "0x20002F3")] public delegate bool RemoteCertificateValidationCallback(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors); }