It's not a problem to upload 5mb file but when I try to upload 14mb my application is down.
fileStream = // get some file as stream from isolated storage
uploadClient = new LiveConnectClient(session);
uploadClient.UploadCompleted += new EventHandler<LiveOperationCompletedEventArgs>(uploadClient_UploadCompleted);
uploadClient.UploadAsync("me/skydrive", "filename", fileStream, OverwriteOption.Overwrite, null);
Exception (see screen shot):
A first chance exception of type 'System.NotSupportedException' occurred in System.Windows.dll
Addtional information: NotSupportedException"
When I use BackgroundUploadAsync instead UploadAsync the file is transferred but has size 0.
Anyone knows the solution of this problem?