IVsParseCommandLine.GetRawSwitchValue(Int32, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the raw, unparsed value of the switch by index.
public:
int GetRawSwitchValue(int iIndex, [Runtime::InteropServices::Out] System::String ^ % pbstrRawSwitchValue);
int GetRawSwitchValue(int iIndex, [Runtime::InteropServices::Out] std::wstring const & & pbstrRawSwitchValue);
public int GetRawSwitchValue (int iIndex, out string pbstrRawSwitchValue);
abstract member GetRawSwitchValue : int * string -> int
Public Function GetRawSwitchValue (iIndex As Integer, ByRef pbstrRawSwitchValue As String) As Integer
Parameters
- iIndex
- Int32
[in] Index of the switch value to return.
- pbstrRawSwitchValue
- String
[out] Pointer to a string containing the switch value.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsParseCommandLine::GetRawSwitchValue(
[in] int iIndex,
[out, retval] BSTR* pbstrRawSwitchValue
);