mirror of
https://github.com/Radarr/Radarr
synced 2025-12-25 17:52:43 +01:00
17 lines
324 B
C#
17 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);
|
|
}
|
|
}
|
|
}
|