mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-11 08:43:01 +01:00
Pushing missing changes
This commit is contained in:
49
MediaBrowser.ApiInteraction/IAsyncHttpClient.cs
Normal file
49
MediaBrowser.ApiInteraction/IAsyncHttpClient.cs
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user