IVsDeployableProjectCfg2.QueryStartDeploy Method (UInt32, array<Int32[], array<Int32 )
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
'Declaración
Function QueryStartDeploy ( _
dwOptions As UInteger, _
<OutAttribute> pfSupported As Integer(), _
<OutAttribute> pfReady As Integer() _
) As Integer
'Uso
Dim instance As IVsDeployableProjectCfg2
Dim dwOptions As UInteger
Dim pfSupported As Integer()
Dim pfReady As Integer()
Dim returnValue As Integer
returnValue = instance.QueryStartDeploy(dwOptions, _
pfSupported, pfReady)
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: System.UInt32
[in] Bit flags specifying deployment options. Unused.
- pfSupported
Type: array<System.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<System.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: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsDeployableProjectCfg.QueryStartDeploy(UInt32, array<Int32[], array<Int32[])
.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.
See Also
Reference
IVsDeployableProjectCfg2 Interface