Fix build

This commit is contained in:
crobibero
2020-08-19 07:09:07 -06:00
parent ac5c0866f3
commit f6b8cd4b46
3 changed files with 8 additions and 34 deletions

View File

@@ -22,16 +22,6 @@ namespace MediaBrowser.Common.Net
_httpClient = httpClient;
}
/// <summary>
/// Make GET request.
/// </summary>
/// <param name="url">Url to request.</param>
/// <returns>A <see cref="Task"/> containing the <see cref="HttpResponseMessage"/>.</returns>
public Task<HttpResponseMessage> GetAsync(string url)
{
return _httpClient.GetAsync(url);
}
/// <summary>
/// Make GET request.
/// </summary>
@@ -42,17 +32,6 @@ namespace MediaBrowser.Common.Net
return _httpClient.GetAsync(url);
}
/// <summary>
/// Make GET request.
/// </summary>
/// <param name="url">Url to request.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>A <see cref="Task"/> containing the <see cref="HttpResponseMessage"/>.</returns>
public Task<HttpResponseMessage> GetAsync(string url, CancellationToken cancellationToken)
{
return _httpClient.GetAsync(url, cancellationToken);
}
/// <summary>
/// Make GET request.
/// </summary>
@@ -64,16 +43,6 @@ namespace MediaBrowser.Common.Net
return _httpClient.GetAsync(url, cancellationToken);
}
/// <summary>
/// Get stream.
/// </summary>
/// <param name="url">Url to get stream from.</param>
/// <returns>A <see cref="Task"/> containing the <see cref="Stream"/>.</returns>
public Task<Stream> GetStreamAsync(string url)
{
return _httpClient.GetStreamAsync(url);
}
/// <summary>
/// Get stream.
/// </summary>