TraceSourceAttribute.cs
11 lines
| 351 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | 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 { | ||||
} | ||||
} | ||||