gpt4 book ai didi

c# - CloudStorageAccount.Parse(connString) 表示找不到 CloudStorageAccount.cs

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:29 27 4
gpt4 key购买 nike

在我的 WebAPI Controller 中,我尝试发布到我的 Azure Blob 存储。我尝试通过以下方式连接:

string blobConnectionString = ConfigurationManager.ConnectionStrings["AzureStorageAccount"].ConnectionString;
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(blobConnectionString);
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("testContainer");

但是,这样做会返回 500,并在调试器中逐行遍历该代码

CloudStorageAccount.Parse(blobConnectionString)

它在 Visual Studio 中返回“未找到源”错误,其中显示:

CloudStorageAccount.cs not found, You need to find CloudStorageAccount.cs to view the source for the current call stack frame.

这是我丢失文件的问题还是我的连接字符串的问题?我的网络配置是:

<connectionStrings>
<add name="AzureStorageAccount" connectionString="DefaultEndpointsProtocol=https;AccountName=somecustomname;AccountKey=accesskey" />
</connectionStrings>

最佳答案

问题是我使用 F11(单步执行)而不是 F10(单步执行)进行调试。

关于c# - CloudStorageAccount.Parse(connString) 表示找不到 CloudStorageAccount.cs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36439163/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com