<PackageReference Include="System.Security.Permissions" Version="9.0.5" />

EventLogPermissionEntryCollection

Contains a strongly typed collection of EventLogPermissionEntry objects.
using System.Collections; namespace System.Diagnostics { public class EventLogPermissionEntryCollection : CollectionBase { public EventLogPermissionEntry this[int index] { get { return null; } set { } } internal EventLogPermissionEntryCollection() { } public int Add(EventLogPermissionEntry value) { return 0; } public void AddRange(EventLogPermissionEntryCollection value) { } public void AddRange(EventLogPermissionEntry[] value) { } public bool Contains(EventLogPermissionEntry value) { return false; } public void CopyTo(EventLogPermissionEntry[] array, int index) { } public int IndexOf(EventLogPermissionEntry value) { return 0; } public void Insert(int index, EventLogPermissionEntry value) { } protected override void OnClear() { } protected override void OnInsert(int index, object value) { } protected override void OnRemove(int index, object value) { } protected override void OnSet(int index, object oldValue, object newValue) { } public void Remove(EventLogPermissionEntry value) { } } }