view Implab/Diagnostics/TraceSourceAttribute.cs @ 248:5cb4826c2c2a v3

Added awaiters to promises Added static methods to Promise Resolve, Reject, All. Updated promise helpers
author cin
date Tue, 30 Jan 2018 01:37:17 +0300
parents a01d9df88d74
children
line wrap: on
line source

using System;

namespace Implab.Diagnostics {
    /// <summary>
    /// Used to mark class which uses <see cref="Trace{T}"/> class to trace it's events
    /// </summary>
    [AttributeUsage(AttributeTargets.Class)]
    public class TraceSourceAttribute : Attribute {
    }
}