14 instantiations of HtmlElementCollection
System.Windows.Forms (14)
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (10)
377return iHTMLElementCollection is not null ? new HtmlElementCollection(ShimManager, iHTMLElementCollection) : new HtmlElementCollection(ShimManager); 388return iHTMLElementCollection is not null ? new HtmlElementCollection(ShimManager, iHTMLElementCollection) : new HtmlElementCollection(ShimManager); 399return iHTMLElementCollection is not null ? new HtmlElementCollection(ShimManager, iHTMLElementCollection) : new HtmlElementCollection(ShimManager); 410return iHTMLElementCollection is not null ? new HtmlElementCollection(ShimManager, iHTMLElementCollection) : new HtmlElementCollection(ShimManager); 472return iHTMLElementCollection is not null ? new HtmlElementCollection(ShimManager, iHTMLElementCollection) : new HtmlElementCollection(ShimManager);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (2)
547return iHTMLElementCollection is not null ? new HtmlElementCollection(_shimManager, iHTMLElementCollection) : new HtmlElementCollection(_shimManager);
System\Windows\Forms\Controls\WebBrowser\HtmlElementCollection.cs (2)
123return new HtmlElementCollection(_shimManager); 133return new HtmlElementCollection(_shimManager, elements);
24 references to HtmlElementCollection
System.Windows.Forms (9)
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (5)
370public HtmlElementCollection All 381public HtmlElementCollection Links 392public HtmlElementCollection Images 403public HtmlElementCollection Forms 466public HtmlElementCollection GetElementsByTagName(string tagName)
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (3)
52public HtmlElementCollection All 66public HtmlElementCollection Children 541public HtmlElementCollection GetElementsByTagName(string tagName)
System\Windows\Forms\Controls\WebBrowser\HtmlElementCollection.cs (1)
105public HtmlElementCollection GetElementsByName(string name)
System.Windows.Forms.Tests (15)
System\Windows\Forms\HtmlDocumentTests.cs (10)
144HtmlElementCollection collection = document.All; 164HtmlElementCollection collection = document.All; 840HtmlElementCollection collection = document.Forms; 860HtmlElementCollection collection = document.Forms; 876HtmlElementCollection collection = document.Images; 896HtmlElementCollection collection = document.Images; 1028HtmlElementCollection collection = document.Links; 1048HtmlElementCollection collection = document.Links; 1768HtmlElementCollection collection = document.GetElementsByTagName("form"); 1793HtmlElementCollection collection = document.GetElementsByTagName("form");
System\Windows\Forms\HtmlElementTests.cs (5)
27HtmlElementCollection collection = element.All; 47HtmlElementCollection collection = element.All; 129HtmlElementCollection collection = element.Children; 148HtmlElementCollection collection = element.Children; 1933HtmlElementCollection collection = element.GetElementsByTagName("form");