Changed web client instances to dispose after use.

This commit is contained in:
streibeb 2015-01-02 17:49:39 -06:00
parent 3cf603b1ad
commit 6410c28594

View File

@ -137,10 +137,12 @@ namespace SpotifyAPI.SpotifyLocalAPI
try
{
//Need to find a better solution
var wc = new ExtendedWebClientInstance();
using (var wc = new ExtendedWebClientInstance())
{
if (SpotifyLocalAPIClass.IsSpotifyRunning())
response = "[ " + wc.DownloadString(a) + " ]";
}
}
catch (Exception z)
{
Console.WriteLine(z.Message);
@ -177,10 +179,12 @@ namespace SpotifyAPI.SpotifyLocalAPI
try
{
//Need to find a better solution
var wc = new ExtendedWebClientInstance();
using (var wc = new ExtendedWebClientInstance())
{
if (SpotifyLocalAPIClass.IsSpotifyRunning())
response = "[ " + await wc.DownloadStringTaskAsync(new Uri(a)) + " ]";
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);