IVsWebBrowserUser::TranslateUrl Method (UInt32, String^, String^)

 

Translate or modify the specified URL.

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

int TranslateUrl(
	unsigned int dwReserved,
	String^ lpszURLIn,
	[OutAttribute] String^% lppszURLOut
)

Parameters

dwReserved
Type: System::UInt32

[in] Reserved.

lpszURLIn
Type: System::String^

[in] The URL to be modified.

lppszURLOut
Type: System::String^

[out] The modified URL.

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 IVsWebBrowserUser::TranslateUrl(
   [in] DWORD dwReserved, 
   [in] LPCOLESTR lpszURLIn, 
   [out] LPOLESTR* lppszURLOut
);
Return to top
Show: