IVsWebBrowsingService.GetWebBrowserEnum(Guid, IEnumWindowFrames) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get an enumerator for the current Web browsers.
public:
int GetWebBrowserEnum(Guid % rguidPersistenceSlot, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IEnumWindowFrames ^ % ppenum);
public int GetWebBrowserEnum (ref Guid rguidPersistenceSlot, out Microsoft.VisualStudio.Shell.Interop.IEnumWindowFrames ppenum);
abstract member GetWebBrowserEnum : Guid * IEnumWindowFrames -> int
Public Function GetWebBrowserEnum (ByRef rguidPersistenceSlot As Guid, ByRef ppenum As IEnumWindowFrames) As Integer
Parameters
- rguidPersistenceSlot
- 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
- IEnumWindowFrames
[out] Pointer to an IEnumWindowFrames interface.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsbrowse.idl:
HRESULT IVsWebBrowsingService::GetWebBrowserEnum(
[in] REFGUID rguidPersistenceSlot,
[out] IEnumWindowFrames** ppEnum
);