Refactor API method names for consistency and clarity

Renamed public API methods across ReC.Client.Api classes to use concise and uniform names (e.g., CreateAsync, UpdateAsync, DeleteAsync, GetAsync, InvokeAsync). Removed obsolete NETFRAMEWORK preprocessor blocks. Updated summary comment for Results property in ReCClient.cs. These changes improve naming consistency and code clarity throughout the client library.
This commit is contained in:
2026-01-16 11:42:03 +01:00
parent 8ddaf1d13e
commit b9a40bb12e
8 changed files with 27 additions and 41 deletions

View File

@@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Net.Http;
using System.Threading.Tasks;
using ReC.Client.Api;
namespace ReC.Client
{
@@ -23,7 +23,7 @@ namespace ReC.Client
public RecActionApi RecActions { get; }
/// <summary>
/// Provides access to OutRes endpoints.
/// Provides access to Result endpoints.
/// </summary>
public ResultApi Results { get; }