Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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: System.String
[in] String containing the command line to parse.
- iMaxParams
Type: System.Int32
[in] Integer—the maximum number of parameters.
- iCursorPos
Type: System.Int32
[in] Integer. The character position to begin parsing of the command line.
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::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.