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
'宣言
Function ParseCommandLine ( _
szCommandLine As String, _
iMaxParams As Integer, _
iCursorPos As Integer _
) As Integer
'使用
Dim instance As IVsParseCommandLine
Dim szCommandLine As String
Dim iMaxParams As Integer
Dim iCursorPos As Integer
Dim returnValue As Integer
returnValue = instance.ParseCommandLine(szCommandLine, _
iMaxParams, iCursorPos)
int ParseCommandLine(
string szCommandLine,
int iMaxParams,
int iCursorPos
)
int ParseCommandLine(
[InAttribute] String^ szCommandLine,
[InAttribute] int iMaxParams,
[InAttribute] int iCursorPos
)
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
);
Permissions
- 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.