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

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

namespace System.Net
{
	public delegate void HttpContinueDelegate (
			int StatusCode,
	   		WebHeaderCollection httpHeaders);
}