Jun 20 2021 11:41 PM
For files less then 3M this works in Xamarin.Forms
await GraphClient.Drive.Root.ItemWithPath(uploadPath).Content.Request().PutAsync<DriveItem>(UploadPictureStream, cts.Token);
How can I do this for large mp4 files?
Thanks
Jun 21 2021 10:56 AM
Solution
I figured it out
https://docs.microsoft.com/en-us/graph/sdks/large-file-upload?tabs=csharp
Microsoft Graph is Phenomenal! It not only has great practical solutions but they are well documented for solutions like this!
Very Impressed!!!!
Aug 11 2021 11:54 PM