IVsWebBrowsingService Interface
Enables a package to create and control a Web browsing session. You can get an instance of this 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
<GuidAttribute("E8B06F51-6D01-11D2-AA7D-00C04F990343")> _
<InterfaceTypeAttribute()> _
Public Interface IVsWebBrowsingService
[GuidAttribute("E8B06F51-6D01-11D2-AA7D-00C04F990343")]
[InterfaceTypeAttribute()]
public interface IVsWebBrowsingService
[GuidAttribute(L"E8B06F51-6D01-11D2-AA7D-00C04F990343")]
[InterfaceTypeAttribute()]
public interface class IVsWebBrowsingService
[<GuidAttribute("E8B06F51-6D01-11D2-AA7D-00C04F990343")>]
[<InterfaceTypeAttribute()>]
type IVsWebBrowsingService = interface end
public interface IVsWebBrowsingService
The IVsWebBrowsingService type exposes the following members.
Methods
Name | Description | |
---|---|---|
CreateExternalWebBrowser | Create an instance of an external Web browser. | |
CreateWebBrowser | Create an instance of a Web browser within the Visual Studio user interface. | |
CreateWebBrowserEx | Create an instance of a Web browser. Extension of the CreateWebBrowser method. | |
GetFirstWebBrowser | Get the first available Web browser. | |
GetWebBrowserEnum | Get an enumerator for the current Web browsers. | |
Navigate | Navigates to the specified URL. |
Top