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

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

namespace System.Net {

	// <remarks>
	// </remarks>
	public interface IWebRequestCreate {
		WebRequest Create (Uri uri);		
	}
}