2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Security / System.Security.Cryptography.Xml / EncryptionProperties.cs
blobe0c1400ff309b7023ba43ecd8cb2b6f64c6d287b
1 //
2 // EncryptionProperties.cs - EncryptionProperties implementation for XML Encryption
3 // http://www.w3.org/2001/04/xmlenc#sec-EncryptionProperties
4 //
5 // Author:
6 // Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Tim Coleman, 2004
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #if NET_2_0
33 using System.Collections;
34 using System.Runtime.CompilerServices;
35 using System.Xml;
37 namespace System.Security.Cryptography.Xml {
39 public sealed class EncryptionPropertyCollection : IList, ICollection, IEnumerable {
41 #region Fields
43 ArrayList list;
45 #endregion // Fields
47 #region Constructors
49 public EncryptionPropertyCollection ()
51 list = new ArrayList ();
54 #endregion // Constructors
56 #region Properties
58 public int Count {
59 get { return list.Count; }
62 public bool IsFixedSize {
63 get { return list.IsFixedSize; }
66 public bool IsReadOnly {
67 get { return list.IsReadOnly; }
70 public bool IsSynchronized {
71 get { return list.IsSynchronized; }
74 object IList.this [int index] {
75 get { return this [index]; }
76 set { this [index] = (EncryptionProperty) value; }
79 [IndexerName ("ItemOf")]
80 public EncryptionProperty this [int index] {
81 get { return (EncryptionProperty) list [index]; }
82 set { list [index] = value; }
85 public object SyncRoot {
86 get { return list.SyncRoot; }
89 #endregion // Properties
91 #region Methods
93 public int Add (EncryptionProperty value)
95 return list.Add (value);
98 public void Clear ()
100 list.Clear ();
103 public bool Contains (EncryptionProperty value)
105 return list.Contains (value);
108 public void CopyTo (Array array, int index)
110 list.CopyTo (array, index);
113 public void CopyTo (EncryptionProperty[] array, int index)
115 list.CopyTo (array, index);
118 public IEnumerator GetEnumerator ()
120 return list.GetEnumerator ();
123 bool IList.Contains (object value)
125 return Contains ((EncryptionProperty) value);
128 int IList.Add (object value)
130 return Add ((EncryptionProperty) value);
133 int IList.IndexOf (object value)
135 return IndexOf ((EncryptionProperty) value);
138 void IList.Insert (int index, object value)
140 Insert (index, (EncryptionProperty) value);
143 void IList.Remove (object value)
145 Remove ((EncryptionProperty) value);
148 public int IndexOf (EncryptionProperty value)
150 return list.IndexOf (value);
153 public void Insert (int index, EncryptionProperty value)
155 list.Insert (index, value);
158 public EncryptionProperty Item (int index)
160 return (EncryptionProperty) list [index];
163 public void Remove (EncryptionProperty value)
165 list.Remove (value);
168 public void RemoveAt (int index)
170 list.RemoveAt (index);
173 #endregion // Methods
177 #endif