IVsDeployableProjectCfg2.QueryStartDeploy Method
Checks for whether or not you can deploy a project with a given set of options.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function QueryStartDeploy ( _
dwOptions As UInteger, _
<OutAttribute> pfSupported As Integer(), _
<OutAttribute> pfReady As Integer() _
) As Integer
int QueryStartDeploy(
uint dwOptions,
int[] pfSupported,
int[] pfReady
)
int QueryStartDeploy(
[InAttribute] unsigned int dwOptions,
[OutAttribute] array<int>^ pfSupported,
[OutAttribute] array<int>^ pfReady
)
abstract QueryStartDeploy :
dwOptions:uint32 *
pfSupported:int[] byref *
pfReady:int[] byref -> int
function QueryStartDeploy(
dwOptions : uint,
pfSupported : int[],
pfReady : int[]
) : int
Parameters
dwOptions
Type: UInt32[in] Bit flags specifying deployment options. Unused.
pfSupported
Type: array<Int32[][out] Optional. Pointer to a Boolean. Set to true if deployment supported. Specify nulla null reference (Nothing in Visual Basic) if not using.
pfReady
Type: array<Int32[][out] Optional. Pointer to a Boolean. Set to true if the project is ready to deploy. Specify nulla null reference (Nothing in Visual Basic) if not using.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
.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.