Pickaxe.Runtime.Http.DownloadImage C# (CSharp) Method

DownloadImage() public static method

public static DownloadImage ( IRuntime runtime, string url, int line ) : RuntimeTable
runtime IRuntime
url string
line int
return RuntimeTable
        public static RuntimeTable<DownloadImage> DownloadImage(IRuntime runtime, string url, int line)
        {
            var table = new RuntimeTable<DownloadImage>();

            var image = GetImage(runtime.RequestFactory, new WebRequestHttpWire(url, runtime, line));

            table.Add(image);
            return table;
        }