How can I get an HtmlElementCollection from a WPF WebBrowser

My old WinForm application used HtmlElementCollection to process a page HtmlElementCollection hec = this.webbrowser.Document.GetElementsByTagName("input"); In WPF WebBrowser, there are several th...