51 references to InnerList
System.Collections.NonGeneric (5)
System\Collections\ReadOnlyCollectionBase.cs (5)
25get { return InnerList.Count; } 30get { return InnerList.IsSynchronized; } 35get { return InnerList.SyncRoot; } 40InnerList.CopyTo(array, index); 45return InnerList.GetEnumerator();
System.ComponentModel.Primitives (4)
System\ComponentModel\ComponentCollection.cs (4)
10public ComponentCollection(IComponent[] components) => InnerList.AddRange(components); 22IList list = InnerList; 39public virtual IComponent? this[int index] => (IComponent?)InnerList[index]; 41public void CopyTo(IComponent[] array, int index) => InnerList.CopyTo(array, index);
System.Configuration.ConfigurationManager (2)
System\Configuration\ConfigurationLocationCollection.cs (2)
12InnerList.AddRange(col); 15public ConfigurationLocation this[int index] => (ConfigurationLocation)InnerList[index];
System.Diagnostics.Process (17)
System\Diagnostics\ProcessModuleCollection.cs (9)
16InnerList.AddRange(processModules); 23InnerList.Capacity = capacity; 27internal void Add(ProcessModule module) => InnerList.Add(module); 29internal void Insert(int index, ProcessModule module) => InnerList.Insert(index, module); 31internal void RemoveAt(int index) => InnerList.RemoveAt(index); 33public ProcessModule this[int index] => (ProcessModule)InnerList[index]!; 35public int IndexOf(ProcessModule module) => InnerList.IndexOf(module); 37public bool Contains(ProcessModule module) => InnerList.Contains(module); 39public void CopyTo(ProcessModule[] array, int index) => InnerList.CopyTo(array, index);
System\Diagnostics\ProcessThreadCollection.cs (8)
25InnerList.AddRange(processThreads); 33get { return (ProcessThread)InnerList[index]!; } 41return ((IList)InnerList).Add(thread); 49InnerList.Insert(index, thread); 57return InnerList.IndexOf(thread); 65return InnerList.Contains(thread); 73InnerList.Remove(thread); 81InnerList.CopyTo(array, index);
System.Net.Security (6)
System\Security\Authentication\ExtendedProtection\ServiceNameCollection.cs (6)
50InnerList.Add(item); 58foreach (string serviceName in InnerList) 69public ServiceNameCollection Merge(string serviceName) => new ServiceNameCollection(InnerList, serviceName); 71public ServiceNameCollection Merge(IEnumerable serviceNames) => new ServiceNameCollection(InnerList, serviceNames); 88AddIfNew(snc.InnerList); 141InnerList.Add(serviceName);
System.Windows.Forms (11)
System\Windows\Forms\FormCollection.cs (6)
33foreach (Form form in InnerList) 58f = (Form?)InnerList[index]; 72InnerList.Add(form); 85inCollection = InnerList.Contains(form); 98InnerList.Remove(form); 109InnerList.RemoveAt(index);
System\Windows\Forms\Input\InputLanguageCollection.cs (5)
22InnerList.AddRange(value); 28public InputLanguage this[int index] => (InputLanguage)InnerList[index]!; // Forcing non-nullable due to legacy requirements. 34public bool Contains(InputLanguage? value) => InnerList.Contains(value); 40public void CopyTo(InputLanguage[] array, int index) => InnerList.CopyTo(array, index); 46public int IndexOf(InputLanguage? value) => InnerList.IndexOf(value);
System.Windows.Forms.Design (6)
System\Drawing\Design\ToolboxItemCollection.cs (6)
18InnerList.AddRange(value); 26InnerList.AddRange(value); 32public ToolboxItem this[int index] => (ToolboxItem)InnerList[index]!; 38public bool Contains(ToolboxItem value) => InnerList.Contains(value); 46InnerList.CopyTo(array, index); 53public int IndexOf(ToolboxItem value) => InnerList.IndexOf(value);