// // System.Diagnostics.EventLogEntryCollection.cs // // Authors: // Jonathan Pryor (jonpryor@vt.edu) // // (C) 2002 Jonathan Pryor // using System; using System.Collections; using System.Diagnostics; namespace System.Diagnostics { [MonoTODO] public class EventLogPermissionEntryCollection : CollectionBase { [MonoTODO] internal EventLogPermissionEntryCollection() { } // [MonoTODO] // public virtual EventLogEntry this [int index] { // get {throw new NotImplementedException();} // } // // [MonoTODO] // public int Add(EventLogPermissionEntry value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public void AddRange(EventLogPermissionEntry[] value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public void AddRange(EventLogPermissionEntryCollection value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public bool Contains(EventLogPermissionEntry value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public void CopyTo(EventLogPermissionEntry[] array, int index) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public int IndexOf(EventLogPermissionEntry value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public void Insert(int index, EventLogPermissionEntry value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // protected override void OnClear() // { // throw new NotImplementedException(); // } // // [MonoTODO] // protected override void OnInsert(int index, object value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // protected override void OnRemove(int index, object value) // { // throw new NotImplementedException(); // } // // [MonoTODO] // protected override void OnSet(int index, object oldValue, // object newValue) // { // throw new NotImplementedException(); // } // // [MonoTODO] // public void Remove(EventLogPermissionEntry value) // { // throw new NotImplementedException(); // } } }