IVsWebBrowsingService::GetWebBrowserEnum Method (Guid, IEnumWindowFrames^)
Visual Studio 2015
Get an enumerator for the current Web browsers.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int GetWebBrowserEnum(
[InAttribute] Guid% rguidPersistenceSlot,
[OutAttribute] IEnumWindowFrames^% ppenum
)
Parameters
- rguidPersistenceSlot
-
Type:
System::Guid
[in] Pointer to the browser window GUID. A window must be registered in order to be saved and restored when Visual Studio starts up. Use GUID_NULL to use the default.
- ppenum
-
Type:
Microsoft.VisualStudio.Shell.Interop::IEnumWindowFrames^
[out] Pointer to an IEnumWindowFrames interface.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsbrowse.idl:
HRESULT IVsWebBrowsingService::GetWebBrowserEnum(
[in] REFGUID rguidPersistenceSlot,
[out] IEnumWindowFrames** ppEnum
);
Show: