30 references to InnerList
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObjectCollection.cs (2)
56return new XmlSchemaObjectEnumerator(InnerList.GetEnumerator()); 171this.InnerList.InsertRange(0, collToAdd);
System.Collections.NonGeneric (26)
System\Collections\CollectionBase.cs (26)
47return InnerList.Capacity; 51InnerList.Capacity = value; 67InnerList.Clear(); 75object? temp = InnerList[index]; 78InnerList.RemoveAt(index); 85InnerList.Insert(index, temp); 92get { return InnerList.IsReadOnly; } 97get { return InnerList.IsFixedSize; } 102get { return InnerList.IsSynchronized; } 107get { return InnerList.SyncRoot; } 112InnerList.CopyTo(array, index); 121return InnerList[index]; 128object? temp = InnerList[index]; 130InnerList[index] = value; 137InnerList[index] = temp; 145return InnerList.Contains(value); 151OnInsert(InnerList.Count, value); 152int index = InnerList.Add(value); 159InnerList.RemoveAt(index); 169int index = InnerList.IndexOf(value); 172InnerList.RemoveAt(index); 179InnerList.Insert(index, value); 186return InnerList.IndexOf(value); 195InnerList.Insert(index, value); 202InnerList.RemoveAt(index); 209return InnerList.GetEnumerator();
System.Private.Xml (2)
System\Xml\Schema\XmlSchemaObjectCollection.cs (2)
31return new XmlSchemaObjectEnumerator(InnerList.GetEnumerator()); 97this.InnerList.InsertRange(0, collToAdd);