IVsCommandWindow.PrepareCommand Method
Performs all the steps to prepare to execute a command-line command.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function PrepareCommand ( _
szCommand As String, _
<OutAttribute> ByRef pguidCmdGroup As Guid, _
<OutAttribute> ByRef pdwCmdID As UInteger, _
<OutAttribute> ByRef ppvaCmdArg As IntPtr, _
<OutAttribute> pResult As PREPARECOMMANDRESULT() _
) As Integer
int PrepareCommand(
string szCommand,
out Guid pguidCmdGroup,
out uint pdwCmdID,
out IntPtr ppvaCmdArg,
PREPARECOMMANDRESULT[] pResult
)
int PrepareCommand(
[InAttribute] String^ szCommand,
[OutAttribute] Guid% pguidCmdGroup,
[OutAttribute] unsigned int% pdwCmdID,
[OutAttribute] IntPtr% ppvaCmdArg,
[OutAttribute] array<PREPARECOMMANDRESULT>^ pResult
)
abstract PrepareCommand :
szCommand:string *
pguidCmdGroup:Guid byref *
pdwCmdID:uint32 byref *
ppvaCmdArg:IntPtr byref *
pResult:PREPARECOMMANDRESULT[] byref -> int
function PrepareCommand(
szCommand : String,
pguidCmdGroup : Guid,
pdwCmdID : uint,
ppvaCmdArg : IntPtr,
pResult : PREPARECOMMANDRESULT[]
) : int
Parameters
szCommand
Type: String[in] String containing the command.
pguidCmdGroup
Type: Guid%[out] Pointer to the GUID of the command's group.
pdwCmdID
Type: UInt32%[out] Pointer to the identifier of the command.
ppvaCmdArg
Type: IntPtr%[out] A pointer to a VARIANT array containing the command arguments.
pResult
Type: array<Microsoft.VisualStudio.Shell.Interop.PREPARECOMMANDRESULT[][out] A pointer to a PREPARECOMMANDRESULT structure containing additional error information.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
The method performs the following steps:
Parses the command string.
Looks up the command.
Verifies the command is enabled.
Determines whether it accepts parameters.
Prepares a VARIANT containing the parameters and a structure to receive the command results.
Upon return, the caller has all the information needed to call the Exec method of the IOleCommandTarget interface.
COM Signature
From vsshell.idl:
HRESULT IVsCommandWindow::PrepareCommand(
[in, ref] LPCOLESTR szCommand,
[out] GUID* pguidCmdGroup,
[out] DWORD* pdwCmdId,
[out] VARIANT** ppvaCmdArg,
[out, retval] PREPARECOMMANDRESULT* pResult
);
Notes for Implementers
On failure, PrepareCommand returns E_FAIL and sets pResult to a value of type PREPARECOMMANDRESULT indicating the nature of the failure. This enables the caller to customize the reporting of various errors. Also on failure the thread error information is set with a meaningful string.
The caller is responsible for the VARIANT argument ppvaCmdArg. To free it, the caller must first call VariantClear Function to clear the contents, and then call CoTaskMemFree to free the VARIANT itself.
.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.