Explorar el Código

Added async moniker to GetImageStream

LukePulverenti Luke Pulverenti luke pulverenti hace 13 años
padre
commit
98841cb6f8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      MediaBrowser.ApiInteraction/ApiClient.cs

+ 1 - 1
MediaBrowser.ApiInteraction/ApiClient.cs

@@ -68,7 +68,7 @@ namespace MediaBrowser.ApiInteraction
         /// <summary>
         /// Gets an image stream based on a url
         /// </summary>
-        public async Task<Stream> GetImageStream(string url)
+        public async Task<Stream> GetImageStreamAsync(string url)
         {
             Stream stream = await HttpClient.GetStreamAsync(url);