IVsFavoritesProvider::Navigate Method (String^, UInt32, IVsWindowFrame^)

 

Gets an IVsWindowFrame the IDE can use when adding to the favorites list.

Namespace:   Microsoft.VisualStudio.Shell.Interop
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::Int32

If 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
);
Return to top
Show: