I can now list my files in the upload control. Now, how do I get the stream from the collection of files? I need to have the stream in order to upload to Azure.
foreach (UploadFileInfo file in args.Files) { var fileName = Path.GetFileName(file.Name); //await using (var fileStream = new FileStream(fileName, FileMode.Create))
Your demo is very confusing and needs more explanation:
https://demos.telerik.com/blazor-ui/upload/chunk-upload
https://www.telerik.com/blazor-ui/documentation/components/upload/overview
This is using asp.net core methods from a controller with blazor... which I've never seen before. Where does the 2nd example tie the controller into the Blazor code? What am I missing?
Hi Joel,
As we discussed, the Upload component sends the files via HTTP requests. If you need access to the file stream, the FileSelect component might be more suitable. To keep the communication organized, let's continue in the private ticket so we can provide more focused support.