* xbuild/Microsoft.Common.targets (_RecordCleanFile): Append list of
[mcs.git] / class / System.ServiceModel / System.ServiceModel.Channels / BindingElementCollection.cs
blob762cb61b517513fc5a2cb5d42280a6367dc818a7
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.
28 using System;
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
32 namespace System.ServiceModel.Channels
34 [MonoTODO]
35 public class BindingElementCollection : Collection<BindingElement>
37 public BindingElementCollection ()
41 public BindingElementCollection (BindingElement [] bindings)
43 AddRange (bindings);
46 public BindingElementCollection (IEnumerable<BindingElement> bindings)
48 foreach (BindingElement e in bindings)
49 Add (e);
52 public void AddRange (params BindingElement[] elements)
54 foreach (BindingElement e in elements)
55 Add (e);
58 public BindingElementCollection Clone ()
60 return new BindingElementCollection (this);
63 public bool Contains (Type bindingElementType)
65 foreach (BindingElement b in this)
66 if (bindingElementType.IsAssignableFrom (b.GetType ()))
67 return true;
68 return false;
71 public T Find<T> ()
73 foreach (BindingElement b in this)
74 if ((object) b is T)
75 return (T) (object) b;
76 return default (T);
79 public Collection<T> FindAll<T> ()
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;
88 public T Remove<T> ()
90 foreach (BindingElement b in this) {
91 if ((object) b is T) {
92 Remove (b);
93 return (T) (object) b;
96 return default (T);
99 public Collection<T> RemoveAll<T> ()
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);
108 return coll;
111 protected override void InsertItem (int index,
112 BindingElement item)
114 Items.Insert (index, item);
117 protected override void SetItem (int index, BindingElement item)
119 Items [index] = item;