IVsParseCommandLine.ParseCommandLine Method
Parses the command line as preparation for using other interface methods to retrieve the parsed elements.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ParseCommandLine ( _
szCommandLine As String, _
iMaxParams As Integer, _
iCursorPos As Integer _
) As Integer
int ParseCommandLine(
string szCommandLine,
int iMaxParams,
int iCursorPos
)
int ParseCommandLine(
[InAttribute] String^ szCommandLine,
[InAttribute] int iMaxParams,
[InAttribute] int iCursorPos
)
abstract ParseCommandLine :
szCommandLine:string *
iMaxParams:int *
iCursorPos:int -> int
function ParseCommandLine(
szCommandLine : String,
iMaxParams : int,
iCursorPos : int
) : int
Parameters
szCommandLine
Type: String[in] String containing the command line to parse.
iMaxParams
Type: Int32[in] Integer—the maximum number of parameters.
iCursorPos
Type: Int32[in] Integer. The character position to begin parsing of the command line.
Return Value
Type: 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::ParseCommandLine(
[in, ref] LPCOLESTR szCommandLine,
[in] int iMaxParams,
[in] int iCursorPos
);
.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.