[threads] Remove unused mono_thread_internal_stop (#4449)
[mono.git] / mcs / class / System.ServiceModel.Discovery / System.ServiceModel.Discovery / DiscoveryVersion.cs
1 //
2 // Author: Atsushi Enomoto <atsushi@ximian.com>
3 //
4 // Copyright (C) 2009 Novell, Inc (http://www.novell.com)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining
7 // a copy of this software and associated documentation files (the
8 // "Software"), to deal in the Software without restriction, including
9 // without limitation the rights to use, copy, modify, merge, publish,
10 // distribute, sublicense, and/or sell copies of the Software, and to
11 // permit persons to whom the Software is furnished to do so, subject to
12 // the following conditions:
13 // 
14 // The above copyright notice and this permission notice shall be
15 // included in all copies or substantial portions of the Software.
16 // 
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 //
25 using System;
26 using System.Collections.Generic;
27 using System.Collections.ObjectModel;
28 using System.ServiceModel;
29 using System.ServiceModel.Channels;
30 using System.ServiceModel.Description;
31 using System.ServiceModel.Dispatcher;
32 using System.ServiceModel.Discovery.Version11;
33 using System.ServiceModel.Discovery.VersionApril2005;
34 using System.ServiceModel.Discovery.VersionCD1;
35
36 namespace System.ServiceModel.Discovery
37 {
38         public sealed class DiscoveryVersion
39         {
40                 internal const string Namespace11 = "http://docs.oasis-open.org/ws-dd/ns/discovery/2009/01";
41                 internal const string NamespaceApril2005 = "http://schemas.xmlsoap.org/ws/2005/04/discovery";
42                 internal const string NamespaceCD1 = "http://docs.oasis-open.org/ws-dd/ns/discovery/2008/09";
43
44                 static DiscoveryVersion ()
45                 {
46                         v11 = new DiscoveryVersion ("WSDiscovery11",
47                                 Namespace11,
48                                 "urn:docs-oasis-open-org:ws-dd:ns:discovery:2009:01",
49                                 MessageVersion.Soap12WSAddressing10,
50                                 typeof (Version11.IAnnouncementContract11),
51                                 typeof (AnnouncementClient11),
52                                 typeof (IDiscoveryProxyContract11),
53                                 typeof (DiscoveryProxyClient11),
54                                 typeof (IDiscoveryTargetContract11),
55                                 typeof (DiscoveryTargetClient11));
56
57                         april2005 = new DiscoveryVersion ("WSDiscoveryApril2005",
58                                 NamespaceApril2005,
59                                 "urn:schemas-xmlsoap-org:ws:2005:04:discovery",
60                                 MessageVersion.Soap12WSAddressingAugust2004,
61                                 typeof (IAnnouncementContractApril2005),
62                                 typeof (AnnouncementClientApril2005),
63                                 typeof (IDiscoveryProxyContractApril2005),
64                                 typeof (DiscoveryProxyClientApril2005),
65                                 typeof (IDiscoveryTargetContractApril2005),
66                                 typeof (DiscoveryTargetClientApril2005));
67
68                         cd1 = new DiscoveryVersion ("WSDiscoveryCD1",
69                                 NamespaceCD1,
70                                 "urn:docs-oasis-open-org:ws-dd:discovery:2008:09",
71                                 MessageVersion.Soap12WSAddressingAugust2004,
72                                 typeof (IAnnouncementContractCD1),
73                                 typeof (AnnouncementClientCD1),
74                                 typeof (IDiscoveryProxyContractCD1),
75                                 typeof (DiscoveryProxyClientCD1),
76                                 typeof (IDiscoveryTargetContractCD1),
77                                 typeof (DiscoveryTargetClientCD1));
78                 }
79
80                 static readonly DiscoveryVersion v11, april2005, cd1;
81
82                 public static DiscoveryVersion WSDiscovery11 {
83                         get { return v11; }
84                 }
85
86                 public static DiscoveryVersion WSDiscoveryApril2005 {
87                         get { return april2005; }
88                 }
89
90                 public static DiscoveryVersion WSDiscoveryCD1 {
91                         get { return cd1; }
92                 }
93
94                 public static DiscoveryVersion FromName (string name)
95                 {
96                         if (name == null)
97                                 throw new ArgumentNullException ("name");
98                         switch (name) {
99                         case "WSDiscovery11":
100                                 return v11;
101                         case "WSDiscoveryApril2005":
102                                 return april2005;
103                         case "WSDiscoveryCD1":
104                                 return cd1;
105                         default:
106                                 throw new ArgumentOutOfRangeException (String.Format ("Invalid version name: {0}", name));
107                         }
108                 }
109
110                 internal DiscoveryVersion (string name, string ns, string adhoc, MessageVersion version, Type announcementContractType, Type announcementClientType, Type discoveryProxyContractType, Type discoveryProxyClientType, Type discoveryTargetContractType, Type discoveryTargetClientType)
111                 {
112                         this.Name = name;
113                         this.Namespace = ns;
114                         AdhocAddress = new Uri (adhoc);
115                         MessageVersion = version;
116                         AnnouncementContractType = announcementContractType;
117                         AnnouncementClientType = announcementClientType;
118                         DiscoveryProxyContractType = discoveryProxyContractType;
119                         DiscoveryProxyClientType = discoveryProxyClientType;
120                         DiscoveryTargetContractType = discoveryTargetContractType;
121                         DiscoveryTargetClientType = discoveryTargetClientType;
122                 }
123
124                 public Uri AdhocAddress { get; private set; }
125                 public MessageVersion MessageVersion { get; private set; }
126                 public string Name { get; private set; }
127                 public string Namespace { get; private set; }
128                 
129                 internal Type AnnouncementContractType { get; private set; }
130                 internal Type AnnouncementClientType { get; private set; }
131                 internal Type DiscoveryProxyContractType { get; private set; }
132                 internal Type DiscoveryProxyClientType { get; private set; }
133                 internal Type DiscoveryTargetContractType { get; private set; }
134                 internal Type DiscoveryTargetClientType { get; private set; }
135
136                 public override string ToString ()
137                 {
138                         return Name;
139                 }
140         }
141 }