IVsUpdateSolutionEvents4.UpdateSolution_QueryDelayFirstUpdateAction Method

Definition

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.

Applies to