Merge pull request #186 from QuickJack/master
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel / EnvelopeVersion.cs
1 //
2 // System.ServiceModel.EnvelopeVersion.cs
3 //
4 // Author: Duncan Mak (duncan@novell.com)
5 //
6 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27
28 using System;
29 using System.ServiceModel;
30
31 namespace System.ServiceModel
32 {
33
34         public sealed class EnvelopeVersion
35         {
36                 const string Soap11NextReceiver = "http://schemas.xmlsoap.org/soap/actor/next";
37                 const string Soap12NextReceiver = "http://www.w3.org/2003/05/soap-envelope/role/next";
38                 internal const string Soap12UltimateReceiver = "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver";
39
40                 string name, uri, next_destination;
41                 string [] ultimate_destination;
42
43                 static EnvelopeVersion soap11 = new EnvelopeVersion ("Soap11",
44                                                                      "http://schemas.xmlsoap.org/soap/envelope/",
45                                                                      Soap11NextReceiver,
46                                                                      String.Empty,
47                                                                      Soap11NextReceiver);
48
49                 static EnvelopeVersion soap12 = new EnvelopeVersion ("Soap12",
50                                                                      "http://www.w3.org/2003/05/soap-envelope",
51                                                                      Soap12NextReceiver,
52                                                                      String.Empty,
53                                                                      Soap12UltimateReceiver,
54                                                                      Soap12NextReceiver);
55
56                 static EnvelopeVersion none = new EnvelopeVersion ("EnvelopeNone",
57                                                                      "http://schemas.microsoft.com/ws/2005/05/envelope/none",
58                                                                      String.Empty,
59                                                                      null);
60
61                 EnvelopeVersion (string name, string uri, string next_destination, params string [] ultimate_destination)
62                 {
63                         this.name = name;
64                         this.uri = uri;
65                         this.next_destination = next_destination;
66                         this.ultimate_destination = ultimate_destination;
67                 }
68
69
70                 internal string Namespace { get { return uri; }}
71
72                 public static EnvelopeVersion Soap11 {
73                         get {  return soap11; }
74                 }
75
76                 public static EnvelopeVersion Soap12 {
77                         get { return soap12; }
78                 }
79
80                 public static EnvelopeVersion None {
81                         get { return none; }
82                 }
83
84                 public string NextDestinationActorValue {
85                         get { return next_destination; }
86                 }
87
88                 public string [] GetUltimateDestinationActorValues ()
89                 {
90                         return ultimate_destination;
91                 }
92
93                 public override string ToString ()
94                 {
95                         return name + "(" + uri + ")";
96                 }
97         }
98 }