Implemented interface member:
method
IndexOf
System.Collections.IList.IndexOf(System.Object)
5 overrides of IndexOf
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
852public override int IndexOf(object? value) 1307public override int IndexOf(object? value) 1746public override int IndexOf(object? value) 2001public override int IndexOf(object? value) 2352public override int IndexOf(object? value)
44 references to IndexOf
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\System\CodeNamespaceImportCollection.cs (1)
218return _data.IndexOf((CodeNamespaceImport)value);
PresentationFramework (11)
MS\Internal\Controls\InnerItemCollectionView.cs (6)
118originalIndexR = _rawList.IndexOf(originalItem); 293int indexV = _viewList.IndexOf(item); 297indexR = _rawList.IndexOf(item); 311indexR = _rawList.IndexOf(item); 420return _viewList.IndexOf(item); 550int index = _viewList.IndexOf(oldCurrentItem);
System\Windows\Data\CompositeCollection.cs (2)
166return InternalList.IndexOf(indexItem); 205int index = InternalList.IndexOf(removeItem);
System\Windows\Data\ListCollectionView.cs (2)
2396tempIndex = ShadowCollection.IndexOf(e.OldItems[0]); 2404tempIndex = ShadowCollection.IndexOf(e.NewItems[0]);
System\Windows\Documents\AdornerLayer.cs (1)
647int index = adornerInfos.IndexOf(adornerInfo);
System.CodeDom (1)
System\CodeDom\CodeNamespaceImportCollection.cs (1)
92int IList.IndexOf(object value) => _data.IndexOf((CodeNamespaceImport)value);
System.Collections.NonGeneric (2)
System\Collections\CollectionBase.cs (2)
169int index = InnerList.IndexOf(value); 186return InnerList.IndexOf(value);
System.Collections.Specialized (1)
System\Collections\Specialized\StringCollection.cs (1)
122return data.IndexOf(value);
System.ComponentModel.TypeConverter (2)
System\ComponentModel\Design\DesignerOptionService.cs (2)
278return _children.IndexOf(value); 373return _children.IndexOf(value);
System.Diagnostics.Process (2)
System\Diagnostics\ProcessModuleCollection.cs (1)
35public int IndexOf(ProcessModule module) => InnerList.IndexOf(module);
System\Diagnostics\ProcessThreadCollection.cs (1)
57return InnerList.IndexOf(thread);
System.DirectoryServices (10)
System\DirectoryServices\ActiveDirectory\ForestTrustCollision.cs (1)
49return InnerList.IndexOf(collision);
System\DirectoryServices\ActiveDirectory\ForestTrustDomainInfoCollection.cs (1)
30return InnerList.IndexOf(information);
System\DirectoryServices\ActiveDirectory\ReplicationCursorCollection.cs (1)
33return InnerList.IndexOf(cursor);
System\DirectoryServices\ActiveDirectory\ReplicationFailureCollection.cs (1)
36return InnerList.IndexOf(failure);
System\DirectoryServices\ActiveDirectory\ReplicationNeighborCollection.cs (1)
36return InnerList.IndexOf(neighbor);
System\DirectoryServices\ActiveDirectory\ReplicationOperationCollection.cs (1)
36return InnerList.IndexOf(operation);
System\DirectoryServices\ActiveDirectory\TopLevelNameCollection.cs (1)
27return InnerList.IndexOf(name);
System\DirectoryServices\ActiveDirectory\TrustRelationshipInformationCollection.cs (1)
46return InnerList.IndexOf(information);
System\DirectoryServices\ResultPropertyValueCollection.cs (1)
32public int IndexOf(object? value) => InnerList.IndexOf(value);
System\DirectoryServices\SearchResultCollection.cs (1)
206public int IndexOf(SearchResult result) => InnerList.IndexOf(result);
System.DirectoryServices.Protocols (3)
System\DirectoryServices\Protocols\common\PartialResultsCollection.cs (1)
18public int IndexOf(object value) => InnerList.IndexOf(value);
System\DirectoryServices\Protocols\common\SearchResults.cs (2)
45public int IndexOf(SearchResultReference value) => InnerList.IndexOf(value); 79public int IndexOf(SearchResultEntry value) => InnerList.IndexOf(value);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (4)
506int index = IndexOf(obj); 1311return _list.IndexOf(value); 1748return _list.IndexOf(value); 2003return _list.IndexOf(value);
System.Security.Cryptography.Xml (4)
System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs (1)
53return _nodeArray.IndexOf(value);
System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs (2)
66return _props.IndexOf(value); 71return _props.IndexOf(value);
System\Security\Cryptography\Xml\ReferenceList.cs (1)
51return _references.IndexOf(value);
System.Windows.Forms (2)
System\Windows\Forms\Controls\UpDown\DomainUpDown.DomainUpDownItemCollection.cs (1)
69int index = IndexOf(item);
System\Windows\Forms\Input\InputLanguageCollection.cs (1)
46public int IndexOf(InputLanguage? value) => InnerList.IndexOf(value);
System.Windows.Forms.Design (1)
System\Drawing\Design\ToolboxItemCollection.cs (1)
53public int IndexOf(ToolboxItem value) => InnerList.IndexOf(value);