简体   繁体   English

Windows Phone 8.1 UNHANDLED_EXCEPTION

[英]Windows Phone 8.1 UNHANDLED_EXCEPTION

 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");

When creating the blob client at "CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();" 在“ CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();”处创建Blob客户端时 application break and enter here: 应用程序中断并在此处输入:

 #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 exception is: {"The argument 'ParallelOperationThreadCount' is larger than maximum of '64'\\r\\nParameter name: ParallelOperationThreadCount"} This code was working in visual studio 2013 then I reinstalled windows 10 and installed 2015 now it does not work. 例外是: {"The argument 'ParallelOperationThreadCount' is larger than maximum of '64'\\r\\nParameter name: ParallelOperationThreadCount"}此代码在Visual Studio 2013中运行,然后我重新安装了Windows 10,并安装了2015,现在它不起作用。 And this code works on emulator but not on device. 此代码可在模拟器上运行,但不能在设备上运行。

似乎有错误 ,请尝试更新您的azure SDK

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM