view Implab/Diagnostics/IEventTextFormatter.cs @ 101:279e226dffdd v2

code cleanup added EnsureDispatched extension
author cin
date Thu, 06 Nov 2014 20:03:19 +0300
parents 4c0e5ef99986
children
line wrap: on
line source

namespace Implab.Diagnostics {
    public interface IEventTextFormatter<in TEvent> {
        EventText Format(LogEventArgs args, TEvent data);
    }
}