SDownload.Framework.Streams.BaseStream.DownloadItem.DownloadItem C# (CSharp) Method

DownloadItem() public method

Creates an object to be downloaded
public DownloadItem ( Uri uri, String absolutePath ) : System
uri System.Uri URI of the remote stream
absolutePath String Absolute path where it should be saved
return System
            public DownloadItem(Uri uri, String absolutePath)
            {
                Uri = uri;
                AbsolutePath = absolutePath;
            }
        }
BaseStream.DownloadItem