| 12345678910111213141516171819202122 |
- //
- // System.Net.ICertificatePolicy.cs
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System.Security.Cryptography.X509Certificates;
- namespace System.Net {
- // <remarks>
- // </remarks>
- public interface ICertificatePolicy {
- bool CheckValidationResult (
- ServicePoint srvPoint,
- X509Certificate certificate,
- WebRequest request,
- int certificateProblem
- );
- }
- }
|