mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-10 23:29:53 +02:00
18 lines
324 B
C#
18 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
internal class WebClientProvider
|
|
{
|
|
|
|
public virtual string DownloadString(string url)
|
|
{
|
|
return new WebClient().DownloadString(url);
|
|
}
|
|
}
|
|
}
|