File: src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\AsyncCausalityTracerConstants.cs
Web Access
Project: src\src\coreclr\System.Private.CoreLib\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Threading.Tasks
{
    internal enum AsyncCausalityStatus
    {
        Started = 0,
        Completed = 1,
        Canceled = 2,
        Error = 3,
    }
 
    internal enum CausalityRelation
    {
        AssignDelegate = 0,
        Join = 1,
        Choice = 2,
        Cancel = 3,
        Error = 4,
    }
 
    internal enum CausalitySynchronousWork
    {
        CompletionNotification = 0,
        ProgressNotification = 1,
        Execution = 2,
    }
}