CodeAnalysisProgress Class
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.
Represents the progress of an operation. Commonly used to update a UI visible to a user when a long running operation is happening.
public sealed class CodeAnalysisProgress
type CodeAnalysisProgress = class
Public NotInheritable Class CodeAnalysisProgress
- Inheritance
-
CodeAnalysisProgress
Constructors
CodeAnalysisProgress() |
Methods
AddCompleteItems(Int32, String) |
When passed to an appropriate IProgress<T>, will indicate that some items of work have
transitioned from being incomplete (see AddIncompleteItems(Int32, String) to complete. This is commonly
presented with a progress bar. An optional |
AddIncompleteItems(Int32, String) |
When passed to an appropriate IProgress<T>, will add the requested number of incomplete items to
the UI showing the progress of the current operation. This is commonly presented with a progress bar. An
optional |
Description(String) |
When passed to an appropriate IProgress<T>, will updates the UI showing the progress of the
current operation to the specified |