6 references to InnerList
System.DirectoryServices (6)
System\DirectoryServices\SearchResultCollection.cs (6)
38public SearchResult this[int index] => (SearchResult)InnerList[index]!; 40public int Count => InnerList.Count; 199public bool Contains(SearchResult result) => InnerList.Contains(result); 203InnerList.CopyTo(results, index); 206public int IndexOf(SearchResult result) => InnerList.IndexOf(result); 214InnerList.CopyTo(array, index);