IVsDeployableProjectCfg.QueryStartDeploy Method
Determines whether or not a project is able to start a deployment operation.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaración
Function QueryStartDeploy ( _
dwOptions As UInteger, _
<OutAttribute> pfSupported As Integer(), _
<OutAttribute> pfReady As Integer() _
) As Integer
'Uso
Dim instance As IVsDeployableProjectCfg
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] Options governing the deployment process. Currently, there are no defined options and dwOptions is always zero.
- pfSupported
Type: array<System.Int32[]
[out, optional] Flag that is set to true if the project supports deployment.
- pfReady
Type: array<System.Int32[]
[out, optional] Flag that is set to true if the project is ready to start the deployment process. This flag is currently unused.
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 IVsDeployableProjectCfg::QueryStartDeploy(
[in] DWORD dwOptions,
[out, optional] BOOL *pfSupported,
[out, optional] BOOL *pfReady
);
.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
IVsDeployableProjectCfg Interface