1
List<Person> friends = new List<Person>(); 
      StorageCredentials credential = new StorageCredentials(x, x); 
      // Retrieve storage account from connection string. 
      CloudStorageAccount storageAccount = new CloudStorageAccount(credential, true); 
      // Create the blob client. 
      CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); 
      // Retrieve reference to a previously created container. 
      CloudBlobContainer container = blobClient.GetContainerReference("cryptochat"); 

在「CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();」創建blob客戶端時,申請休息,在這裏輸入:Windows Phone 8.1 UNHANDLED_EXCEPTION

#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION 
      UnhandledException += (sender, e) => 
      { 
       if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break(); 
      }; 
#endif 

唯一的例外是:{"The argument 'ParallelOperationThreadCount' is larger than maximum of '64'\r\nParameter name: ParallelOperationThreadCount"} 此代碼是在Visual Studio 2013的工作,然後我重新安裝了Windows 10和2015年安裝的,現在這是行不通的。而這個代碼在模擬器上工作,但不在設備上。

+0

什麼是異常和堆棧跟蹤? – thumbmunkeys

+0

它沒有給出具體的異常的實際問題是,否則我可以解決這個問題:)它從程序拋出進入這裏後突然:#如果DEBUG && DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION UnhandledException + =(發件人,E)=> { 如果! (global :: System.Diagnostics.Debugger.IsAttached)global :: System.Diagnostics.Debugger.Break(); }; #endif @thumbmunkeys –

+0

異常有一個類型,例如。 'NullReferenceException',類型對於分析問題非常重要 – thumbmunkeys

回答

1

看來有一個bug,嘗試更新您的天藍色的SDK

+0

它仍然不起作用相同的錯誤和」blobClient.ParallelOperationThreadCount = 1;「是綠色下劃線:「CloudBlobClient.ParallelOperationThreadCount已過時:使用DefaultRequestOptions.ParallelOperationThreadCount」當我嘗試建議時,仍然有相同的錯誤繼續 –

+0

@Thomas一個錯誤,我認爲它是我的,因爲它幾乎與我的相同 – thumbmunkeys