IVsUpdateSolutionEvents4.UpdateSolution_QueryDelayFirstUpdateAction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fired before the first update action, just after UpdateSolution_StartUpdate(Int32) to determine if a delay should occur.
public:
void UpdateSolution_QueryDelayFirstUpdateAction([Runtime::InteropServices::Out] int % pfDelay);
void UpdateSolution_QueryDelayFirstUpdateAction([Runtime::InteropServices::Out] int & pfDelay);
public void UpdateSolution_QueryDelayFirstUpdateAction (out int pfDelay);
abstract member UpdateSolution_QueryDelayFirstUpdateAction : int -> unit
Public Sub UpdateSolution_QueryDelayFirstUpdateAction (ByRef pfDelay As Integer)
Parameters
- pfDelay
- Int32
[out] The delay. If this parameter is non-zero, the update action will be delayed and invoked at a later idle time.
Remarks
Implementations of this method should be side-effect free, as this method may be called multiple times before UpdateSolution_BeginFirstUpdateAction is invoked.