##// END OF EJS Templates
Added the chaining method to the non-generic IPromise
Added the chaining method to the non-generic IPromise

File last commit:

r92:4c0e5ef99986 v2
r96:daffa72a1cec v2
Show More
IEventTextFormatter.cs
5 lines | 159 B | text/x-csharp | CSharpLexer
namespace Implab.Diagnostics {
public interface IEventTextFormatter<in TEvent> {
EventText Format(LogEventArgs args, TEvent data);
}
}