**** Merged from MCS ****
[mono-project.git] / mcs / class / System / System.Diagnostics / PerformanceCounterPermissionEntryCollection.cs
blobc91d0108868021229d4eec3c23a3065b9d7060e7
1 //
2 // System.Diagnostics.PerformanceCounterPermissionEntryCollection.cs
3 //
4 // Authors:
5 // Jonathan Pryor (jonpryor@vt.edu)
6 // Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 // Sebastien Pouliot <sebastien@ximian.com>
8 //
9 // (C) 2002
10 // (C) 2003 Andreas Nahr
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System.Collections;
34 using System.Globalization;
35 using System.Security.Permissions;
37 namespace System.Diagnostics {
39 [Serializable]
40 public class PerformanceCounterPermissionEntryCollection : CollectionBase {
42 private PerformanceCounterPermission owner;
44 internal PerformanceCounterPermissionEntryCollection (PerformanceCounterPermission owner)
46 this.owner = owner;
47 ResourcePermissionBaseEntry[] entries = owner.GetEntries ();
48 if (entries.Length > 0) {
49 foreach (ResourcePermissionBaseEntry entry in entries) {
50 PerformanceCounterPermissionAccess elpa = (PerformanceCounterPermissionAccess) entry.PermissionAccess;
51 string machine = entry.PermissionAccessPath [0];
52 string category = entry.PermissionAccessPath [1];
53 PerformanceCounterPermissionEntry elpe = new PerformanceCounterPermissionEntry (elpa, machine, category);
54 // we don't want to add them (again) to the base class
55 InnerList.Add (elpe);
60 internal PerformanceCounterPermissionEntryCollection (ResourcePermissionBaseEntry[] entries)
62 foreach (ResourcePermissionBaseEntry entry in entries) {
63 List.Add (new PerformanceCounterPermissionEntry ((PerformanceCounterPermissionAccess) entry.PermissionAccess, entry.PermissionAccessPath[0], entry.PermissionAccessPath[1]));
67 public PerformanceCounterPermissionEntry this [int index] {
68 get { return (PerformanceCounterPermissionEntry) InnerList[index]; }
69 set { InnerList[index] = value; }
72 public int Add (PerformanceCounterPermissionEntry value)
74 return List.Add (value);
77 public void AddRange (PerformanceCounterPermissionEntry[] value)
79 foreach (PerformanceCounterPermissionEntry e in value)
80 List.Add (e);
83 public void AddRange (PerformanceCounterPermissionEntryCollection value)
85 foreach (PerformanceCounterPermissionEntry e in value)
86 List.Add (e);
89 public bool Contains (PerformanceCounterPermissionEntry value)
91 return List.Contains (value);
94 public void CopyTo (PerformanceCounterPermissionEntry[] array, int index)
96 List.CopyTo (array, index);
99 public int IndexOf (PerformanceCounterPermissionEntry value)
101 return List.IndexOf (value);
104 public void Insert (int index, PerformanceCounterPermissionEntry value)
106 List.Insert (index, value);
109 protected override void OnClear ()
111 owner.ClearEntries ();
114 protected override void OnInsert (int index, object value)
116 owner.Add (value);
119 protected override void OnRemove (int index, object value)
121 owner.Remove (value);
124 protected override void OnSet (int index, object oldValue, object newValue)
126 owner.Remove (oldValue);
127 owner.Add (newValue);
130 public void Remove (PerformanceCounterPermissionEntry value)
132 List.Remove (value);