25 references to IHTMLElementCollection
System.Windows.Forms (25)
winforms\Managed\System\WinForms\HtmlDocument.cs (5)
416UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlDocument2.GetAll(); 429UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlDocument2.GetLinks(); 442UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlDocument2.GetImages(); 455UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlDocument2.GetForms(); 516UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = ((UnsafeNativeMethods.IHTMLDocument3)this.NativeHtmlDocument2).GetElementsByTagName(tagName);
winforms\Managed\System\WinForms\HtmlElement.cs (5)
69UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlElement.GetAll() as UnsafeNativeMethods.IHTMLElementCollection; 82UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = this.NativeHtmlElement.GetChildren() as UnsafeNativeMethods.IHTMLElementCollection; 569UnsafeNativeMethods.IHTMLElementCollection iHTMLElementCollection = ((UnsafeNativeMethods.IHTMLElement2)this.NativeHtmlElement).GetElementsByTagName(tagName);
winforms\Managed\System\WinForms\HtmlElementCollection.cs (3)
26private UnsafeNativeMethods.IHTMLElementCollection htmlElementCollection; 37internal HtmlElementCollection(HtmlShimManager shimManager, UnsafeNativeMethods.IHTMLElementCollection elements) { 50private UnsafeNativeMethods.IHTMLElementCollection NativeHtmlElementCollection {
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (12)
2349IHTMLElementCollection GetAll(); 2352IHTMLElementCollection GetImages(); 2353IHTMLElementCollection GetApplets(); 2354IHTMLElementCollection GetLinks(); 2355IHTMLElementCollection GetForms(); 2356IHTMLElementCollection GetAnchors(); 2359IHTMLElementCollection GetScripts(); 2365IHTMLElementCollection GetEmbeds(); 2366IHTMLElementCollection GetPlugins(); 2502[return: MarshalAs(UnmanagedType.Interface)] UnsafeNativeMethods.IHTMLElementCollection GetElementsByName([In] string v); 2504[return: MarshalAs(UnmanagedType.Interface)] UnsafeNativeMethods.IHTMLElementCollection GetElementsByTagName([In] string v); 3087[return: MarshalAs(UnmanagedType.Interface)] UnsafeNativeMethods.IHTMLElementCollection GetElementsByTagName(string v);