New test.
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Timestamp / WSTimestamp.cs
1 //\r
2 // WSTimestamp.cs: WSTimestamp definitions\r
3 //\r
4 // Author:\r
5 //      Sebastien Pouliot (spouliot@motus.com)\r
6 //\r
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)\r
8 //\r
9 // Licensed under MIT X11 (see LICENSE) with this specific addition:\r
10 //\r
11 // \93This source code may incorporate intellectual property owned by Microsoft \r
12 // Corporation. Our provision of this source code does not include any licenses\r
13 // or any other rights to you under any Microsoft intellectual property. If you\r
14 // would like a license from Microsoft (e.g. rebrand, redistribute), you need \r
15 // to contact Microsoft directly.\94\r
16 //\r
17 \r
18 using System;\r
19 \r
20 namespace Microsoft.Web.Services.Timestamp {\r
21 \r
22         public class WSTimestamp {\r
23 \r
24                 public class AttributeNames {\r
25 \r
26                         public const string Actor = "Actor";\r
27                         public const string Delay = "Delay";\r
28                         public const string Id = "Id";\r
29                         public const string ValueType = "ValueType";\r
30 \r
31                         public AttributeNames () {}\r
32                 }\r
33 \r
34                 public class ElementNames {\r
35 \r
36                         public const string Created = "Created";\r
37                         public const string Expires = "Expires";\r
38                         public const string Received = "Received";\r
39                         public const string Timestamp = "Timestamp";\r
40 \r
41                         public ElementNames () {}\r
42                 }\r
43 \r
44                 public const string NamespaceURI = "http://schemas.xmlsoap.org/ws/2002/07/utility";\r
45                 public const string Prefix = "wsu";\r
46                 public const string TimeFormat = "yyyy-MM-ddTHH:mm:ssZ";\r
47 \r
48                 public WSTimestamp () {}\r
49         }\r
50 }\r