Is it possible to start the downloader server-side (e.g. without clicking a button or link at the UI)?
I'm working on a user control to handle requests for generating files raised from other user controls, so it is responding to custom events raised by other controls. My intent is for this to be a reusable handler for building and downloading files from different contexts.
I would like to have an EO.Web Downloader create the dynamic contents (similar to
http://demo.essentialobjects.com/Demos/Downloader/Features/Dynamic%20Contents/Demo.aspx) and handle the download. However, I'm not seeing any way to trigger the download from the server-side.
Is there a server-side API for this (like the client-side 'start')?
I'd thought to call the event [downloader1_download(object, new eo.web.DownloadEventArgs());], but I'm getting an error that there is no constructor for the DownloadEventArgs.
I also tried raising the associated button's Click event, but that didn't result in the Download event getting called.