IVsFavoritesProvider::Navigate Method (String^, UInt32, IVsWindowFrame^)
Visual Studio 2015
Gets an IVsWindowFrame the IDE can use when adding to the favorites list.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int Navigate( String^ lpszURL, unsigned int dwFlags, [OutAttribute] IVsWindowFrame^% ppFrame )
Parameters
- lpszURL
-
Type:
System::String^
[in] Pointer to a string containing the URL.
- dwFlags
-
Type:
System::UInt32
[in] Reserved for future use.
- ppFrame
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsWindowFrame^
[out] Pointer to a IVsWindowFrame interface that the IDE can use for creating a Web browser instance.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code. `
From vsbrowse.idl:
[C++]
HRESULT IVsFavoritesProvider::Navigate( [in] LPCOLESTR lpszURL, [in] DWORD dwFlags, [out] IVsWindowFrame** ppFrame );
Show: