**** Merged from MCS ****
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / SignatureOptions.cs
blobd0ba1f84d7b0db7c6de470561835b76faf59639f
1 //
2 // SignatureOptions.cs: Signature options enumeration
3 //
4 // Author:
5 // Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
10 using System;
12 namespace Microsoft.Web.Services.Security {
14 [Flags]
15 [Serializable]
16 public enum SignatureOptions {
17 IncludeNone = 0,
18 IncludePath = 15,
19 #if WSE1
20 IncludePathAction = 1,
21 IncludePathFrom = 2,
22 IncludePathId = 4,
23 IncludePathTo = 8,
24 #endif
25 IncludeSoapBody = 16,
26 IncludeTimestamp = 96,
27 IncludeTimestampCreated = 32,
28 IncludeTimestampExpires = 64,