blob: edd11829a667e776b8f71a921ce6480f9fae4412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
using MediaBrowser.Model.Logging;
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.ApiInteraction
{
/// <summary>
/// Interface IHttpClient
/// </summary>
public interface IAsyncHttpClient : IDisposable
{
/// <summary>
/// Sets the authorization header that should be supplied on every request
/// </summary>
/// <param name="header"></param>
void SetAuthorizationHeader(string header);
/// <summary>
/// Gets the stream async.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="logger">The logger.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Stream}.</returns>
Task<Stream> GetStreamAsync(string url, ILogger logger, CancellationToken cancellationToken);
/// <summary>
/// Deletes the async.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="logger">The logger.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
Task DeleteAsync(string url, ILogger logger, CancellationToken cancellationToken);
/// <summary>
/// Posts the async.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="contentType">Type of the content.</param>
/// <param name="postContent">Content of the post.</param>
/// <param name="logger">The logger.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Stream}.</returns>
Task<Stream> PostAsync(string url, string contentType, string postContent, ILogger logger, CancellationToken cancellationToken);
}
}
|