Does xojo.framework support webfile download?

As I am migrating apps to the new framework, I have routines for downloading files. Is there a way to do this with the new xojo.framework, or do I need to convert my xojo.io.folderitems to classic framework folderitems in order to support web downloads?

There is no Xojo.Net.Webfile (or would it be Xojo.io.Webfile ?), so you will need to do something like

myWebFile = WebFile.Open(GetFolderItem(f.path, FolderItem.PathTypeNative))

Thanks. Just wanted to assure I wasn’t missing something.