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客户机时,应用程序中断并在这里输入:
#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 2013中工作,然后我重新安装了windows 10并安装了2015年,现在它不工作了。这段代码在模拟器上工作,但在设备上不起作用。
发布于 2015-09-09 13:19:36
似乎有一个错误,尝试更新您的azure
https://stackoverflow.com/questions/32479830
复制相似问题