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
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
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!!!!
2 people are following this question.