* BindingSourceTest.cs: New Filter/RemoveFilter tests.
[mono.git] / mcs / class / corlib / System.Security.Principal / IdentityReferenceCollection.cs
1 //
2 // System.Security.Policy.IdentityReferenceCollection.cs
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@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
29 #if NET_2_0
30
31 using System.Collections;
32 using System.Collections.Generic;
33 using System.Globalization;
34 using System.Runtime.InteropServices;
35
36 namespace System.Security.Principal {
37
38         [ComVisible (false)]
39         public class IdentityReferenceCollection : IEnumerable, ICollection<IdentityReference>, IEnumerable<IdentityReference> {
40
41                 private ArrayList _list;
42
43                 public IdentityReferenceCollection ()
44                 {
45                         _list = new ArrayList ();
46                 }
47
48                 public IdentityReferenceCollection (int capacity)
49                 {
50                         _list = new ArrayList (capacity);
51                 }
52
53
54                 public int Count {
55                         get { return _list.Count; }
56                 }
57
58                 public bool IsReadOnly {
59                         get { return false; }
60                 }
61
62                 public IdentityReference this [int index] {
63                         get {
64                                 if (index >= _list.Count)
65                                         return null;
66                                 return (IdentityReference) _list [index];
67                         }
68                         set { _list [index] = value; }
69                 }
70
71
72                 public void Add (IdentityReference identity)
73                 {
74                         _list.Add (identity);
75                 }
76
77                 public void Clear ()
78                 {
79                         _list.Clear ();
80                 }
81
82                 public bool Contains (IdentityReference identity)
83                 {
84                         foreach (IdentityReference id in _list) {
85                                 if (id.Equals (identity))
86                                         return true;
87                         }
88                         return false;
89                 }
90
91                 [MonoTODO]
92                 public void CopyTo (IdentityReference[] array, int offset)
93                 {
94                 }
95
96                 [MonoTODO]
97                 public IEnumerator<IdentityReference> GetEnumerator ()
98                 {
99                         return null;
100                 }
101
102                 [MonoTODO]
103                 IEnumerator IEnumerable.GetEnumerator ()
104                 {
105                         return null;
106                 }
107
108                 public bool Remove (IdentityReference identity)
109                 {
110                         foreach (IdentityReference id in _list) {
111                                 if (id.Equals (identity)) {
112                                         _list.Remove (id);
113                                         return true;
114                                 }
115                         }
116                         return false;
117                 }
118
119                 [MonoTODO]
120                 public IdentityReferenceCollection Translate (Type targetType)
121                 {
122                         return null;
123                 }
124
125                 [MonoTODO]
126                 public IdentityReferenceCollection Translate (Type targetType, bool forceSuccess)
127                 {
128                         return null;
129                 }
130         }
131 }
132
133 #endif