Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Quote a parameter string and escape characters within the string appropriately.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function QuoteParam ( _
szParam As String, _
<OutAttribute> ByRef pbstrQuotedParam As String _
) As Integer
'Usage
Dim instance As IVsParseCommandLine
Dim szParam As String
Dim pbstrQuotedParam As String
Dim returnValue As Integer
returnValue = instance.QuoteParam(szParam, _
pbstrQuotedParam)
int QuoteParam(
string szParam,
out string pbstrQuotedParam
)
int QuoteParam(
[InAttribute] String^ szParam,
[OutAttribute] String^% pbstrQuotedParam
)
abstract QuoteParam :
szParam:string *
pbstrQuotedParam:string byref -> int
function QuoteParam(
szParam : String,
pbstrQuotedParam : String
) : int
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.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsParseCommandLine::QuoteParam(
[in] LPCOLESTR szParam,
[out, retval] BSTR* pbstrQuotedParam
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.