5MB のファイルをアップロードするのは問題ありませんが、14MB のファイルをアップロードしようとすると、アプリケーションがダウンします。
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);
例外 (スクリーンショットを参照):
A first chance exception of type 'System.NotSupportedException' occurred in System.Windows.dll
Addtional information: NotSupportedException"
UploadAsync の代わりに BackgroundUploadAsync を使用すると、ファイルは転送されますが、サイズは 0 です。
誰でもこの問題の解決策を知っていますか?