121 references to InnerList
mscorlib (7)
system\collections\readonlycollectionbase.cs (5)
30get { return InnerList.Count; } 34get { return InnerList.IsSynchronized; } 38get { return InnerList.SyncRoot; } 42InnerList.CopyTo(array, index); 46return InnerList.GetEnumerator();
system\security\accesscontrol\rules.cs (2)
360InnerList.Add( rule ); 378get { return InnerList[index] as AuthorizationRule; }
System (21)
compmod\system\componentmodel\ComponentCollection.cs (4)
46InnerList.AddRange(components); 59IList list = InnerList; 79return (IComponent)InnerList[index]; 87InnerList.CopyTo(array, index);
security\system\security\Authentication\ExtendedProtection\ServiceNameCollection.cs (4)
22AddIfNew(InnerList, serviceName); 29newServiceNames.AddRange(this.InnerList); 40newServiceNames.AddRange(this.InnerList); 85return Contains(searchName, InnerList);
services\monitoring\system\diagnosticts\ProcessModuleCollection.cs (5)
26InnerList.AddRange(processModules); 33get { return (ProcessModule)InnerList[index]; } 40return InnerList.IndexOf(module); 47return InnerList.Contains(module); 54InnerList.CopyTo(array, index);
services\monitoring\system\diagnosticts\ProcessThreadCollection.cs (8)
29InnerList.AddRange(processThreads); 36get { return (ProcessThread)InnerList[index]; } 43return InnerList.Add(thread); 50InnerList.Insert(index, thread); 57return InnerList.IndexOf(thread); 64return InnerList.Contains(thread); 71InnerList.Remove(thread); 78InnerList.CopyTo(array, index);
System.Configuration (2)
System\Configuration\ConfigurationLocationCollection.cs (2)
16InnerList.AddRange(col); 21return (ConfigurationLocation) InnerList[index];
System.Drawing (12)
commonui\System\Drawing\Design\CategoryNameCollection.cs (6)
27InnerList.AddRange(value); 37InnerList.AddRange(value); 46return ((string)(InnerList[index])); 56return InnerList.Contains(value); 65InnerList.CopyTo(array, index); 74return InnerList.IndexOf(value);
commonui\System\Drawing\Design\ToolboxItemCollection.cs (6)
28InnerList.AddRange(value); 38InnerList.AddRange(value); 47return ((ToolboxItem)(InnerList[index])); 57return InnerList.Contains(value); 66InnerList.CopyTo(array, index); 75return InnerList.IndexOf(value);
System.Web (69)
Management\WebEvents.cs (5)
2476InnerList.Add(eventRaised); 2485InnerList.Add(eventRaised); 2491return (WebBaseEvent) InnerList[index]; 2496return InnerList.IndexOf(value); 2500return InnerList.Contains(value);
UI\WebParts\CatalogPartCollection.cs (8)
29return (CatalogPart) InnerList[index]; 35foreach (CatalogPart catalogPart in InnerList) { 46return InnerList.Add(value); 50return InnerList.Contains(catalogPart); 54InnerList.CopyTo(array, index); 58return InnerList.IndexOf(catalogPart); 66InnerList.Add(existingCatalogPart); 78InnerList.Add(obj);
UI\WebParts\ConnectionInterfaceCollection.cs (6)
34InnerList.Add(existingConnectionInterface); 46InnerList.Add(obj); 52return InnerList.Contains(value); 56return InnerList.IndexOf(value); 61return (Type)InnerList[index]; 66InnerList.CopyTo(array, index);
UI\WebParts\ConsumerConnectionPointCollection.cs (5)
36InnerList.Add(point); 53return (ConsumerConnectionPoint)InnerList[index]; 64return InnerList.Contains(connectionPoint); 68return InnerList.IndexOf(connectionPoint); 72InnerList.CopyTo(array, index);
UI\WebParts\EditorPartCollection.cs (7)
28return (EditorPart) InnerList[index]; 33return InnerList.Add(value); 37return InnerList.Contains(editorPart); 41InnerList.CopyTo(array, index); 45return InnerList.IndexOf(editorPart); 53InnerList.Add(existingEditorPart); 65InnerList.Add(obj);
UI\WebParts\ProviderConnectionPointCollection.cs (5)
37InnerList.Add(point); 54return (ProviderConnectionPoint)InnerList[index]; 65return InnerList.Contains(connectionPoint); 69return InnerList.IndexOf(connectionPoint); 73InnerList.CopyTo(array, index);
UI\WebParts\TransformerTypeCollection.cs (7)
32return InnerList.Add(value); 40InnerList.Add(existingTransformerType); 56InnerList.Add(obj); 62return InnerList.Contains(value); 66return InnerList.IndexOf(value); 71return (Type)InnerList[index]; 76InnerList.CopyTo(array, index);
UI\WebParts\WebPartCollection.cs (7)
33InnerList.Add(obj); 39return InnerList.Add(value); 43return InnerList.Contains(value); 47return InnerList.IndexOf(value); 52return (WebPart) InnerList[index]; 64foreach (WebPart webPart in InnerList) { 97InnerList.CopyTo(array, index);
UI\WebParts\WebPartDescriptionCollection.cs (5)
39InnerList.Add(description); 49return InnerList.Contains(value); 53return InnerList.IndexOf(value); 58return (WebPartDescription) InnerList[index]; 69InnerList.CopyTo(array, index);
UI\WebParts\WebPartVerbCollection.cs (7)
35return (WebPartVerb) InnerList[index]; 53return InnerList.Add(value); 57return InnerList.Contains(value); 61InnerList.CopyTo(array, index); 65return InnerList.IndexOf(value); 81InnerList.Add(existingVerb); 100InnerList.Add(webPartVerb);
UI\WebParts\WebPartZoneCollection.cs (7)
32InnerList.Add(obj); 37return InnerList.Add(value); 41return InnerList.Contains(value); 45return InnerList.IndexOf(value); 50return (WebPartZoneBase) InnerList[index]; 58foreach (WebPartZoneBase zone in InnerList) { 74InnerList.CopyTo(array, index);
System.Windows.Forms (10)
winforms\Managed\System\WinForms\FormCollection.cs (5)
35foreach(Form form in InnerList) { 57f = (Form) InnerList[index]; 68InnerList.Add(form); 80inCollection = InnerList.Contains(form); 90InnerList.Remove(form);
winforms\Managed\System\WinForms\InputLanguageCollection.cs (5)
27InnerList.AddRange(value); 36return ((InputLanguage)(InnerList[index])); 46return InnerList.Contains(value); 55InnerList.CopyTo(array, index); 64return InnerList.IndexOf(value);