2using System.Threading.Tasks;
20 : base(ForegroundColor, BackgroundColor)
30 return this.writer(System.Console.Out);
Abstract base class for custom writers
ConsoleOutCustomAsyncWriter(CustomAsyncWriter Writer, ConsoleColor? ForegroundColor, ConsoleColor? BackgroundColor)
Performs custom writing
override Task DoWrite()
Method that does the actual custom writing.
delegate Task CustomAsyncWriter(TextWriter Output)
Delegate for asynchronous custom writers.