Catel.LogAnalyzer.ViewModels.ShellViewModel.OnOpenFileCommandExecute C# (CSharp) Method

OnOpenFileCommandExecute() private method

Method to invoke when the OpenFileCommand command is executed.
private OnOpenFileCommandExecute ( ) : void
return void
        private void OnOpenFileCommandExecute()
        {
            if (!_openFileService.DetermineFile())
            {
                return;
            }

            var fileName = _openFileService.FileName;

            OnLoadFileExecute(fileName);
        }