예제 #1
0
        private async Task StartProcess()
        {
            while (_currentValue < Int32.MaxValue)
            {
                await Task.Delay(800);

                _currentValue++;
                _recorder.RecordInfo("App", $"value: {_currentValue}");
            }
        }
예제 #2
0
 private void WrongCommandHandler()
 {
     _applicationRecorder.RecordInfo("Local", "Wrong command");
 }