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

SoapHeaderDirection.cs « System.Web.Services.Protocols « System.Web.Services « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14c60ee3119f7cdb2ca7bafb9325634360257604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 
// System.Web.Services.Protocols.SoapHeaderDirection.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2002
//

namespace System.Web.Services.Protocols {
	[Flags]
	[Serializable]
	public enum SoapHeaderDirection {
		In = 0x1,
		InOut = 0x3,
		Out = 0x2
	}
}