a
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Net.Security
|
||||
{
|
||||
/// <summary>Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.</summary>
|
||||
/// <param name="sender">An object that contains state information for this validation.</param>
|
||||
/// <param name="certificate">The certificate used to authenticate the remote party.</param>
|
||||
/// <param name="chain">The chain of certificate authorities associated with the remote certificate.</param>
|
||||
/// <param name="sslPolicyErrors">One or more errors associated with the remote certificate.</param>
|
||||
/// <returns>A <see cref="T:System.Boolean" /> value that determines whether the specified certificate is accepted for authentication.</returns>
|
||||
// Token: 0x020002F7 RID: 759
|
||||
// (Invoke) Token: 0x0600143A RID: 5178
|
||||
[Token(Token = "0x20002F7")]
|
||||
public delegate bool RemoteCertificateValidationCallback(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors);
|
||||
}
|
||||
Reference in New Issue
Block a user