IVsWebBrowser Interface
Manipulates a Web browser. Returned by the CreateWebBrowser method of the IVsWebBrowsingService interface. You can get an instance of the IVsWebBrowsingService interface from the SVsWebBrowsingService (SID_SVsWebBrowsingService) service.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<InterfaceTypeAttribute()> _
<GuidAttribute("E8B06F50-6D01-11D2-AA7D-00C04F990343")> _
Public Interface IVsWebBrowser
[InterfaceTypeAttribute()]
[GuidAttribute("E8B06F50-6D01-11D2-AA7D-00C04F990343")]
public interface IVsWebBrowser
[InterfaceTypeAttribute()]
[GuidAttribute(L"E8B06F50-6D01-11D2-AA7D-00C04F990343")]
public interface class IVsWebBrowser
[<InterfaceTypeAttribute()>]
[<GuidAttribute("E8B06F50-6D01-11D2-AA7D-00C04F990343")>]
type IVsWebBrowser = interface end
public interface IVsWebBrowser
The IVsWebBrowser type exposes the following members.
Methods
Name | Description | |
---|---|---|
GetDocumentInfo | Gets information about the specified document. | |
Navigate | Navigates to web with Visual Studio internal protocol URLs. | |
NavigateEx | Navigates to web with external protocol URLs. | |
Refresh | Refreshes the browser contents. | |
Stop | Stops the browser. |
Top