IVsParseCommandLine::QuoteParam Method (String^, String^)
Visual Studio 2015
Quote a parameter string and escape characters within the string appropriately.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- szParam
-
Type:
System::String^
[in] String containing the parameter to quote.
- pbstrQuotedParam
-
Type:
System::String^
[out] Pointer to the quoted parameter string.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsParseCommandLine::QuoteParam(
[in] LPCOLESTR szParam,
[out, retval] BSTR* pbstrQuotedParam
);
Show: