mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
b8a2190168
* feat: implements markets API * fix: use correct constructor name * feat: allow to pass a cancellation token * pass cancellation token * pass cancellation token only >NETSTANDARD2_1 Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
13 lines
287 B
C#
13 lines
287 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web.Http
|
|
{
|
|
public interface IHTTPClient : IDisposable
|
|
{
|
|
Task<IResponse> DoRequest(IRequest request, CancellationToken cancel = default);
|
|
void SetRequestTimeout(TimeSpan timeout);
|
|
}
|
|
}
|