mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
12 lines
350 B
C#
12 lines
350 B
C#
using System.Net.Http;
|
|
using System.Net.Security;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
namespace NzbDrone.Common.Http.Dispatchers
|
|
{
|
|
public interface ICertificateValidationService
|
|
{
|
|
bool ShouldByPassValidationError(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors);
|
|
}
|
|
}
|