Catel.LogAnalyzer.ViewModels.ShellViewModel.OnOpenFileCommandExecute C# (CSharp) Метод

OnOpenFileCommandExecute() приватный Метод

Method to invoke when the OpenFileCommand command is executed.
private OnOpenFileCommandExecute ( ) : void
Результат void
        private void OnOpenFileCommandExecute()
        {
            if (!_openFileService.DetermineFile())
            {
                return;
            }

            var fileName = _openFileService.FileName;

            OnLoadFileExecute(fileName);
        }