IVsWebBrowser::NavigateEx Method (UInt32, String^, Object^, Object^, Object^)

 

Navigates to web with external protocol URLs.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int NavigateEx(
	unsigned int dwFlags,
	String^ lpszURL,
	[InAttribute] Object^% pvarTargetFrame,
	[InAttribute] Object^% pvarPostData,
	[InAttribute] Object^% pvarHeaders
)

Parameters

dwFlags
Type: System::UInt32

[in] Flags specifying navigation options. Possible values are VSNWB_ForceNew, VSNWB_AddToMRU, VSNWB_VsURLOnly, and VSNWB_WebURLOnly.

lpszURL
Type: System::String^

[in] The URL to which to navigate.

pvarTargetFrame
Type: System::Object^

[in] The target frame.

pvarPostData
Type: System::Object^

[in] The data to post.

pvarHeaders
Type: System::Object^

[in] Headers.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsbrowse.idl:

HRESULT IVsWebBrowser::NavigateEx(
   [in] DWORD dwFlags, 
   [in] LPCOLESTR lpszURL, 
   [in] VARIANT* pvarTargetFrame, 
   [in] VARIANT* pvarPostData, 
   [in] VARIANT* pvarHeaders
);
Return to top
Show: