##// END OF EJS Templates
fixed typo
fixed typo

File last commit:

r289:95896f882995 v3.0.14 v3
r297:00a2d52813ee v3.0.16 default
Show More
TraceSourceAttribute.cs
11 lines | 351 B | text/x-csharp | CSharpLexer
/ Implab / src / Diagnostics / TraceSourceAttribute.cs
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
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 {
}
}