IHttpClient.cs 228 B

1234567891011
  1. using System;
  2. using System.IO;
  3. using System.Threading.Tasks;
  4. namespace MediaBrowser.ApiInteraction
  5. {
  6. public interface IHttpClient : IDisposable
  7. {
  8. Task<Stream> GetStreamAsync(string url);
  9. }
  10. }