Ensure proper disposal and add HttpExtensions class

Updated `InvokeRecActionCommand.cs` to use `using` statements for `HttpClient`, `HttpRequestMessage`, and `HttpResponseMessage` to prevent resource leaks.

Added a new `HttpExtensions.cs` file with a static `HttpExtensions` class as a placeholder for future HTTP-related extension methods. Included necessary `using` directives for potential LINQ, collections, and asynchronous programming.
This commit is contained in:
2025-11-27 11:32:14 +01:00
parent 2f3a685e7d
commit a46d97467d
2 changed files with 14 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ReC.Application.Common;
public static class HttpExtensions
{
}