Bloom.CLI.DownloadBookCommand.HandleSilentDownload C# (CSharp) Method

HandleSilentDownload() public static method

public static HandleSilentDownload ( DownloadBookOptions options ) : int
options DownloadBookOptions
return int
        public static int HandleSilentDownload(DownloadBookOptions options)
        {
            // This task will be all the program does. We need to do enough setup so that
            // the download code can work, then tear it down.
            Program.SetUpErrorHandling();
            try
            {
                using (var applicationContainer = new ApplicationContainer())
                {
                    Program.SetUpLocalization(applicationContainer);
                    Browser.SetUpXulRunner();
                    Browser.XulRunnerShutdown += Program.OnXulRunnerShutdown;
                    LocalizationManager.SetUILanguage(Settings.Default.UserInterfaceLanguage, false);
                    var transfer = new BookTransfer(new BloomParseClient(), ProjectContext.CreateBloomS3Client(),
                        applicationContainer.BookThumbNailer, new BookDownloadStartingEvent()) /*not hooked to anything*/;
                    // Since Bloom is not a normal console app, when run from a command line, the new command prompt
                    // appears at once. The extra newlines here are attempting to separate this from our output.
                    Console.WriteLine("\nstarting download");
                    transfer.HandleDownloadWithoutProgress(options.Url, options.DestinationPath);
                    Console.WriteLine(("\ndownload complete\n"));
                }
                return 0;
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
                Console.WriteLine(ex.Message);
                Console.WriteLine(ex.StackTrace);
                return 1;
            }
        }
DownloadBookCommand