Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICertificatePolicy.cs « System.Net « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37d2405a3eca06b51df90e13c62f8ba2ae8e53ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Net.ICertificatePolicy.cs
//
// Author:
//   Lawrence Pit (loz@cable.a2000.nl)
//

using System.Security.Cryptography.X509Certificates;

namespace System.Net {

	// <remarks>
	// </remarks>
	public interface ICertificatePolicy {
		bool CheckValidationResult (
				ServicePoint srvPoint,
				X509Certificate certificate,
		   		WebRequest request,
		   		int certificateProblem
		);		
	}
}