2002-05-06 Lawrence Pit <loz@cable.a2000.nl>
[mono.git] / mcs / class / System / System.Net / ICertificatePolicy.cs
1 //
2 // System.Net.ICertificatePolicy.cs
3 //
4 // Author:
5 //   Lawrence Pit (loz@cable.a2000.nl)
6 //
7
8 using System.Security.Cryptography.X509Certificates;
9
10 namespace System.Net {
11
12         // <remarks>
13         // </remarks>
14         public interface ICertificatePolicy {
15                 bool CheckValidationResult (
16                                 ServicePoint srvPoint,
17                                 X509Certificate certificate,
18                                 WebRequest request,
19                                 int certificateProblem
20                 );              
21         }
22 }