| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- //
- // System.Diagnostics.EventLogEntryCollection.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (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();
- // }
- }
- }
|