IVsWebBrowserUser::TranslateUrl Method (UInt32, String^, String^)
Visual Studio 2015
Translate or modify the specified URL.
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::Int32If 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 );
Show: