Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UIThreadOperationStatus.cs « Utilities « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8b505d127698b40cdba3965b16958cb8e1e27e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Microsoft.VisualStudio.Utilities
{
#pragma warning disable CA1717 // Only FlagsAttribute enums should have plural names
    /// <summary>
    /// Represents a status of executing a potentially long running operation on the UI thread.
    /// </summary>
    public enum UIThreadOperationStatus
#pragma warning restore CA1717 // Only FlagsAttribute enums should have plural names
    {
        /// <summary>
        /// An operation was successfully completed.
        /// </summary>
        Completed,

        /// <summary>
        /// An operation was cancelled.
        /// </summary>
        Canceled,
    }
}