The WebBrowser class is just a wrapper for the COM object of the IE. You can access the browser object model with the Document property of the WebBrowser, e.g.
Code:
HTMLDocumentClass doc = (HTMLDocumentClass)webBrowser.Document;
The HTMLDocumentClass is defined with the COM object definitions in the MSHTML library (add a reference to the Microsoft HTML Object Library).
Hope this helps.