From 06471a7674727c59679718184c91dcd5789cce83 Mon Sep 17 00:00:00 2001 From: EonaCat Date: Mon, 25 Aug 2025 19:35:53 +0200 Subject: [PATCH] Removed JSON file example --- EonaCat.Connections.Client/Program.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/EonaCat.Connections.Client/Program.cs b/EonaCat.Connections.Client/Program.cs index b8ec646..5b79ec3 100644 --- a/EonaCat.Connections.Client/Program.cs +++ b/EonaCat.Connections.Client/Program.cs @@ -24,9 +24,6 @@ namespace EonaCat.Connections.Client.Example Console.Write("Enter message to send (or 'exit' to quit): "); var message = Console.ReadLine(); - HttpClient httpClient = new HttpClient(); - message = await httpClient.GetStringAsync("https://samples.json-format.com/employees/10-level/employees-10-level_100MB.json"); - if (!string.IsNullOrEmpty(message) && message.Equals("exit", StringComparison.OrdinalIgnoreCase)) { await _client.DisconnectAsync().ConfigureAwait(false);