Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
296 views
in Technique[技术] by (71.8m points)

Where can I find the list of interfaces supported by the WPF WebBrowser.Document from C#?

Where can I find the list of interfaces supported by the WPF WebBrowser.Document (namespace system.windows.controls) from C#?

Moreover, where can I find the official documentation from Microsoft web site? The document from MS http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.document%28v=vs.110%29.aspx only state this:

Remarks

The Document object needs to be cast to the COM interface you are expecting.

But I cannot find the list of interfaces that I can expect from this object.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can include an reference to Microsoft.mshtml to your project.

Then you can use the mshtml namespace with the interfaces IHTMLDocument, IHTMLDocument or IHTMLDocument[2...5]. Dont know why there are so many.

They all are implemented by the HTMLDocumentClass. You can get additional info here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...