(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / corlib / System.Security / PermissionSetCollection.cs
blob9bbcb94624e1a8488244f8677363b4b42d177bcc
1 //
2 // System.Security.PermissionSetCollection class
3 //
4 // Authors
5 // Sebastien Pouliot <sebastien@ximian.com>
6 //
7 // Copyright (C) 2004 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.
29 #if NET_2_0
31 using System;
32 using System.Collections;
33 using System.Security.Permissions;
35 namespace System.Security {
37 [Serializable]
38 public sealed class PermissionSetCollection : ICollection, IEnumerable {
40 private IList _list;
42 public PermissionSetCollection ()
44 _list = (IList) new ArrayList ();
47 // properties
49 public int Count {
50 get { return _list.Count; }
53 public bool IsSynchronized {
54 get { return false; }
57 public IList PermissionSets {
58 get { return _list; }
59 set { _list = value; }
62 public object SyncRoot {
63 // this is the "real thing"
64 get { throw new NotSupportedException (); }
67 // methods
69 public void Add (PermissionSet permSet)
71 if (permSet == null)
72 throw new ArgumentNullException ("permSet");
73 _list.Add (permSet);
76 [MonoTODO ("check if permission are copied (or just referenced)")]
77 public PermissionSetCollection Copy ()
79 PermissionSetCollection psc = new PermissionSetCollection ();
80 foreach (PermissionSet ps in _list) {
81 psc._list.Add (ps);
83 return psc;
86 public void CopyTo (PermissionSet[] array, int index)
88 // this is the "real thing"
89 throw new NotSupportedException ();
92 void ICollection.CopyTo (Array array, int index)
94 // this is the "real thing"
95 throw new NotSupportedException ();
98 [MonoTODO]
99 public void Demand ()
101 // check all collection in a single stack walk
104 [MonoTODO]
105 public void FromXml (SecurityElement el)
107 if (el == null)
108 throw new ArgumentNullException ("el");
109 // TODO
112 public IEnumerator GetEnumerator ()
114 return _list.GetEnumerator ();
117 public PermissionSet GetSet (int index)
119 return (PermissionSet) _list [index];
122 public void RemoveSet (int index)
124 _list.Remove (index);
127 public override string ToString ()
129 return ToXml ().ToString ();
132 [MonoTODO ("verify syntax")]
133 public SecurityElement ToXml ()
135 SecurityElement se = new SecurityElement ("PermissionSetCollection");
136 foreach (PermissionSet ps in _list) {
137 se.AddChild (ps.ToXml ());
139 return se;
144 #endif