##// END OF EJS Templates
Implab.Test moved to xunit...
Implab.Test moved to xunit Complete set of PromiseHelpers (Then, Catch, Finally) Removed obsolete types ICancellable, ICancellationToken

File last commit:

r212:a01d9df88d74 v2
r249:d82909310094 v3
Show More
TraceSourceAttribute.cs
10 lines | 289 B | text/x-csharp | CSharpLexer
/ Implab / Diagnostics / TraceSourceAttribute.cs
cin
Added class Trace<T> to manage channels for individual classes, if SomeClass...
r212 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 {
}
}