Handle multiple concurrent calls to BeginTryReceiveRequest
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / BindingElementCollection.cs
1 //
2 // BindingElementCollection.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.Generic;
30 using System.Collections.ObjectModel;
31
32 namespace System.ServiceModel.Channels
33 {
34         [MonoTODO]
35         public class BindingElementCollection : Collection<BindingElement>
36         {
37                 public BindingElementCollection ()
38                 {
39                 }
40
41                 public BindingElementCollection (BindingElement [] bindings)
42                 {
43                         AddRange (bindings);
44                 }
45
46                 public BindingElementCollection (IEnumerable<BindingElement> bindings)
47                 {
48                         foreach (BindingElement e in bindings)
49                                 Add (e);
50                 }
51
52                 public void AddRange (params BindingElement[] elements)
53                 {
54                         foreach (BindingElement e in elements)
55                                 Add (e);
56                 }
57
58                 public BindingElementCollection Clone ()
59                 {
60                         return new BindingElementCollection (this);
61                 }
62
63                 public bool Contains (Type bindingElementType)
64                 {
65                         foreach (BindingElement b in this)
66                                 if (bindingElementType.IsAssignableFrom (b.GetType ()))
67                                         return true;
68                         return false;
69                 }
70
71                 public T Find<T> ()
72                 {
73                         foreach (BindingElement b in this)
74                                 if ((object) b is T)
75                                         return (T) (object) b;
76                         return default (T);
77                 }
78
79                 public Collection<T> FindAll<T> ()
80                 {
81                         Collection<T> coll = new Collection<T> ();
82                         foreach (BindingElement b in this)
83                                 if ((object) b is T)
84                                         coll.Add ((T) (object) b);
85                         return coll;
86                 }
87
88                 public T Remove<T> ()
89                 {
90                         foreach (BindingElement b in this) {
91                                 if ((object) b is T) {
92                                         Remove (b);
93                                         return (T) (object) b;
94                                 }
95                         }
96                         return default (T);
97                 }
98
99                 public Collection<T> RemoveAll<T> ()
100                 {
101                         Collection<T> coll = new Collection<T> ();
102                         foreach (BindingElement b in this) {
103                                 if ((object) b is T) {
104                                         Remove (b);
105                                         coll.Add ((T) (object) b);
106                                 }
107                         }
108                         return coll;
109                 }
110
111                 protected override void InsertItem (int index,
112                         BindingElement item)
113                 {
114                         Items.Insert (index, item);
115                 }
116
117                 protected override void SetItem (int index, BindingElement item)
118                 {
119                         Items [index] = item;
120                 }
121         }
122 }