IVsProgress.Report(Double) 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.
Reports the progress of an operation.
public void Report (double value);
abstract member Report : double -> unit
Public Sub Report (value As Double)
Parameters
- value
- Double
The progress of the operation.
Remarks
value
can be in the range [0.0..1.0], where 0.0 is 0% complete and 1.0 is 100% complete. A value outside that range indicates indeterminate progress.
This method is safe to access from any thread.