Пример #1
0
 private static Command[] SetupCommands(HttpClientSamples samples) =>
 new Command[]
 {
     new Command("-s", nameof(HttpClientSamples.GetDataSimpleAsync), samples.GetDataSimpleAsync),
     new Command("-a", nameof(HttpClientSamples.GetDataAdvancedAsync), samples.GetDataAdvancedAsync),
     new Command("-e", nameof(HttpClientSamples.GetDataWithExceptionsAsync), samples.GetDataWithExceptionsAsync),
     new Command("-h", nameof(HttpClientSamples.GetDataWithHeadersAsync), samples.GetDataWithHeadersAsync),
     new Command("-m", nameof(HttpClientSamples.GetDataWithMessageHandlerAsync), samples.GetDataWithMessageHandlerAsync),
 };
Пример #2
0
        static async Task Main(string[] args)
        {
            var samples = new HttpClientSamples();

            s_Commands = SetupCommands(samples);

            if (args.Length == 0 || args.Length > 1 || !s_Commands.Select(c => c.Option).Contains(args[0]))
            {
                ShowUsage();
                return;
            }

            await s_Commands.Single(c => c.Option == args[0]).ActionAsync();

            Console.ReadLine();
        }