Example #1
0
        private void SetArchiveTypeUserInput(string archiveTypeSelected)
        {
            _log.Debug($"User set archive type to {archiveTypeSelected}");
            ArchiveType tempArchiveType;

            if (ArchiveType.TryParse(archiveTypeSelected, true, out tempArchiveType))
            {
                _isArchiveTypeSelected = true;
                ArchiveType            = tempArchiveType;
            }
        }
Example #2
0
        private void SetArchiveTypeUserInput(string archiveTypeSelected)
        {
            _log.Information($"User action: Select archive type {archiveTypeSelected}");

            ArchiveType tempArchiveType;

            if (ArchiveType.TryParse(archiveTypeSelected, true, out tempArchiveType))
            {
                _isArchiveTypeSelected = true;
                ArchiveType            = tempArchiveType;
            }
        }