##// END OF EJS Templates
Added test for TraceRegistry
Added test for TraceRegistry

File last commit:

r286:67ebcfd7d1c8 v3
r287:78da52bb28f0 v3
Show More
TraceSourceAttribute.cs
11 lines | 351 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)]
cin
Working on Implab.Diagnostics
r286 [Obsolete("Use TraceRegistry to monitor trace sources")]
cin
Added class Trace<T> to manage channels for individual classes, if SomeClass...
r212 public class TraceSourceAttribute : Attribute {
}
}