File: Base\System\Windows\Threading\DispatcherOperationStatus.cs
Project: wpf\src\WindowsBase.csproj (WindowsBase)
using System;
using System.Runtime.InteropServices;
 
namespace System.Windows.Threading
{
    /// <summary>
    ///     An enunmeration describing the status of a DispatcherOperation.
    /// </summary>
    ///
    public enum DispatcherOperationStatus
    {
        /// <summary>
        ///     The operation is still pending.
        /// </summary>
        Pending,
 
        /// <summary>
        ///     The operation has been aborted.
        /// </summary>
        Aborted,
 
        /// <summary>
        ///     The operation has been completed.
        /// </summary>
        Completed,
        
        /// <summary>
        ///     The operation has started executing, but has not completed yet.
        /// </summary>
        Executing
    }
}