HtmlDocument::DomDocument Property
Gets the unmanaged interface pointer for this HtmlDocument.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
HtmlDocument is a wrapper for the Internet Explorer Document Object Model (DOM), which is written in COM. If you need to access unexposed properties or methods on the underlying COM interfaces, such as IHTMLDocument2, you can use this object to query for them.
To use the unmanaged interfaces, import the MSHTML library (mshtml.dll) into your application. However, you can also execute unexposed properties and methods using the IDispatch::Invoke method.
The following code example casts the DomDocument to an IHTMLDocument2 pointer and displays the value of the lastModified property, which tells when the owner of the document last updated its contents. The code example requires that you have a Button on your form named Button6.
For UnmanagedCode permission. Associated enumeration: SecurityPermissionFlag
Available since 2.0