Beispiel #1
0
 public InitialisationReporter()
 {
     stream = new ReportableStream();
     writer = new StreamWriter(stream.Stream, Encoding.UTF8, 1024, true)
     {
         AutoFlush = true
     };
 }
Beispiel #2
0
        public bool Start(InputModel inputModel)
        {
            input        = inputModel;
            containError = false;

            stream = new ReportableStream();
            writer = new FormattableStreamWriter(stream.Stream, Encoding.UTF8, 1024, true);
            return(true);
        }