mirror of
https://github.com/Readarr/Readarr
synced 2026-05-03 18:21:05 +02:00
12 lines
No EOL
234 B
C#
12 lines
No EOL
234 B
C#
using System.Net;
|
|
|
|
namespace NzbDrone.Providers
|
|
{
|
|
public class WebClientProvider
|
|
{
|
|
public virtual string DownloadString(string url)
|
|
{
|
|
return new WebClient().DownloadString(url);
|
|
}
|
|
}
|
|
} |