37 references to InnerList
mscorlib (26)
system\collections\collectionbase.cs (26)
45return InnerList.Capacity; 48InnerList.Capacity = value; 61InnerList.Clear(); 69Object temp = InnerList[index]; 72InnerList.RemoveAt(index); 77InnerList.Insert(index, temp); 84get { return InnerList.IsReadOnly; } 88get { return InnerList.IsFixedSize; } 92get { return InnerList.IsSynchronized; } 96get { return InnerList.SyncRoot; } 100InnerList.CopyTo(array, index); 108return InnerList[index]; 115Object temp = InnerList[index]; 117InnerList[index] = value; 122InnerList[index] = temp; 129return InnerList.Contains(value); 134OnInsert(InnerList.Count, value); 135int index = InnerList.Add(value); 140InnerList.RemoveAt(index); 149int index = InnerList.IndexOf(value); 152InnerList.RemoveAt(index); 157InnerList.Insert(index, value); 163return InnerList.IndexOf(value); 172InnerList.Insert(index, value); 177InnerList.RemoveAt(index); 183return InnerList.GetEnumerator();
System (2)
services\monitoring\system\diagnosticts\EventLogPermissionEntryCollection.cs (1)
21this.InnerList.Add(new EventLogPermissionEntry(entries[index]));
services\monitoring\system\diagnosticts\PerformanceCounterPermissionEntryCollection.cs (1)
21this.InnerList.Add(new PerformanceCounterPermissionEntry(entries[index]));
System.Data (7)
fx\src\data\System\Data\SqlClient\SqlBulkCopyColumnMappingCollection.cs (7)
61InnerList.Add(bulkCopyColumnMapping); 100return (-1 != InnerList.IndexOf(value)); 104InnerList.CopyTo(array, index); 109InnerList.Add(new SqlBulkCopyColumnMapping (i,i)); 114return InnerList.IndexOf(value); 119InnerList.Insert(index, value); 124InnerList.Remove(value);
System.Xml (2)
System\Xml\Schema\XmlSchemaObjectCollection.cs (2)
50return new XmlSchemaObjectEnumerator(InnerList.GetEnumerator()); 149this.InnerList.InsertRange(0, collToAdd);