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

OnParseCommandCanExecute() private method

Method to check whether the ParseCommand command can be executed.
private OnParseCommandCanExecute ( ) : bool
return bool
        private bool OnParseCommandCanExecute()
        {
            return Document != null && !string.IsNullOrWhiteSpace(Document.Text);
        }