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

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

using System;

namespace System.Net {

	// <remarks>
	// </remarks>
	public interface IWebProxy {
		ICredentials Credentials {
			get; 
			set;
		}

		Uri GetProxy (Uri destination);
		
		bool IsBypassed (Uri host);
	}
}