##// END OF EJS Templates
Added IObservable to TraceRegistry
Added IObservable to TraceRegistry

File last commit:

r286:67ebcfd7d1c8 v3
r288:90cef6117ced v3
Show More
TraceSourceAttribute.cs
11 lines | 351 B | text/x-csharp | CSharpLexer
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)]
[Obsolete("Use TraceRegistry to monitor trace sources")]
public class TraceSourceAttribute : Attribute {
}
}