IEventTextFormatter.cs
10 lines
| 254 B
| text/x-csharp
|
CSharpLexer
cin
|
r40 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab.Diagnostics { | ||||
public interface IEventTextFormatter<in TEvent> { | ||||
EventText Format(TraceContext context, TEvent data); | ||||
} | ||||
} | ||||