diff --git a/src/WindreamHub.Legacy.Client/Models/ModelExtensions.cs b/src/WindreamHub.Legacy.Client/Models/ModelExtensions.cs index 77bd2e0..eb17e45 100644 --- a/src/WindreamHub.Legacy.Client/Models/ModelExtensions.cs +++ b/src/WindreamHub.Legacy.Client/Models/ModelExtensions.cs @@ -60,7 +60,7 @@ namespace WindreamHub.Legacy.Client.Models }); } - public static Func CreateFetchAsyncAction(this Task> responseAsync, Action next, Action error = null, CancellationToken cancellationToken = default) + public static Func CreateFetchAsync(this Task> responseAsync, Action next, Action error = null, CancellationToken cancellationToken = default) { return async () => { @@ -75,7 +75,7 @@ namespace WindreamHub.Legacy.Client.Models }; } - public static Action CreateFetchAction(this Task> responseAsync, Action next, Action error = null, CancellationToken cancellationToken = default) + public static Action CreateFetch(this Task> responseAsync, Action next, Action error = null, CancellationToken cancellationToken = default) { return () => Task.Run(async () => {