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年安裝的,現在這是行不通的。而這個代碼在模擬器上工作,但不在設備上。
什麼是異常和堆棧跟蹤? – thumbmunkeys
它沒有給出具體的異常的實際問題是,否則我可以解決這個問題:)它從程序拋出進入這裏後突然:#如果DEBUG && DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION UnhandledException + =(發件人,E)=> { 如果! (global :: System.Diagnostics.Debugger.IsAttached)global :: System.Diagnostics.Debugger.Break(); }; #endif @thumbmunkeys –
異常有一個類型,例如。 'NullReferenceException',類型對於分析問題非常重要 – thumbmunkeys