IVsDeployableProjectCfg.QueryStatusDeploy Method
Determines whether or not a deployment operation has completed successfully.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function QueryStatusDeploy ( _
<OutAttribute> ByRef pfDeployDone As Integer _
) As Integer
int QueryStatusDeploy(
out int pfDeployDone
)
int QueryStatusDeploy(
[OutAttribute] int% pfDeployDone
)
abstract QueryStatusDeploy :
pfDeployDone:int byref -> int
function QueryStatusDeploy(
pfDeployDone : int
) : int
Parameters
pfDeployDone
Type: Int32%[out] Flag that is set to true if the deployment operation was successful and false if it was not successful.
Return Value
Type: 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::QueryStatusDeploy(
[out] BOOL *pfDeployDone
);
.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.