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