HyperComments.Recorder.RecordingCommand.RecordingCommand C# (CSharp) Method

RecordingCommand() public method

public RecordingCommand ( Action recordingCompletedCallback ) : System
recordingCompletedCallback Action
return System
        public RecordingCommand(Action<string> recordingCompletedCallback)
        {
            _isRecording = false;
            _recordingCompletedCallback = recordingCompletedCallback;

            AudioRecorder = new Mp3AudioRecorder();
        }