소스 검색

Added async moniker to GetImageStream

LukePulverenti Luke Pulverenti luke pulverenti 13 년 전
부모
커밋
98841cb6f8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);