New tests.
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Description / ServiceEndpointCollection.cs
1 //
2 // ServiceEndpointCollection.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.Collections.ObjectModel;
30 using System.Runtime.Serialization;
31 using System.Xml;
32
33 namespace System.ServiceModel.Description
34 {
35         public class ServiceEndpointCollection : Collection<ServiceEndpoint>
36         {
37                 internal ServiceEndpointCollection ()
38                 {
39                 }
40
41                 public ServiceEndpoint Find (Type type)
42                 {
43                         foreach (ServiceEndpoint e in this)
44                                 if (e.Contract.ContractType == type)
45                                         return e;
46                         return null;
47                 }
48
49                 public ServiceEndpoint Find (Uri uri)
50                 {
51                         foreach (ServiceEndpoint e in this)
52                                 if (e.Address.Uri == uri)
53                                         return e;
54                         return null;
55                 }
56
57                 public ServiceEndpoint Find (XmlQualifiedName name)
58                 {
59                         foreach (ServiceEndpoint e in this)
60                                 if (e.Contract.Name == name.Name &&
61                                         e.Contract.Namespace == name.Namespace)
62                                         return e;
63                         return null;
64                 }
65
66                 public ServiceEndpoint Find (XmlQualifiedName contractName,
67                         XmlQualifiedName bindingName)
68                 {
69                         foreach (ServiceEndpoint e in this)
70                                 if (e.Contract.Name == contractName.Name &&
71                                         e.Contract.Namespace == contractName.Namespace &&
72                                         e.Binding.Name == bindingName.Name &&
73                                         e.Binding.Namespace == bindingName.Namespace)
74                                         return e;
75                         return null;
76                 }
77
78                 public ServiceEndpoint Find (Type contractType,
79                         XmlQualifiedName bindingName)
80                 {
81                         foreach (ServiceEndpoint e in this)
82                                 if (e.Contract.ContractType == contractType &&
83                                         e.Binding.Name == bindingName.Name &&
84                                         e.Binding.Namespace == bindingName.Namespace)
85                                         return e;
86                         return null;
87                 }
88
89                 public Collection<ServiceEndpoint> FindAll (Type contractType)
90                 {
91                         Collection<ServiceEndpoint> list =
92                                 new Collection<ServiceEndpoint> ();
93                         foreach (ServiceEndpoint e in this)
94                                 if (e.Contract.ContractType == contractType)
95                                         list.Add (e);
96                         return list;
97                 }
98
99                 public Collection<ServiceEndpoint> FindAll (XmlQualifiedName name)
100                 {
101                         Collection<ServiceEndpoint> list =
102                                 new Collection<ServiceEndpoint> ();
103                         foreach (ServiceEndpoint e in this)
104                                 if (e.Contract.Name == name.Name &&
105                                     e.Contract.Namespace == name.Namespace)
106                                         list.Add (e);
107                         return list;
108                 }
109
110                 protected override void InsertItem (int index, ServiceEndpoint item)
111                 {
112                         if (item == null)
113                                 throw new ArgumentNullException ("item");
114                         base.InsertItem (index, item);
115                 }
116
117                 protected override void SetItem (int index, ServiceEndpoint item)
118                 {
119                         if (item == null)
120                                 throw new ArgumentNullException ("item");
121                         base.SetItem (index, item);
122                 }
123         }
124 }