gpt4 book ai didi

c# - 尝试删除 Azure Functions 中的 blob,但缺少 DeleteIfExists 方法

转载 作者:行者123 更新时间:2023-12-03 04:13:29 32 4
gpt4 key购买 nike

我使用 BlobTrigger 模板创建了一个带有 Blob 触发器的新 C# Azure 函数。然后,我更改了绑定(bind)到 CloudBlockBlob 的 Blob 触发器的类型。接下来我尝试添加一行来删除该 Blob 。这导致了函数编译错误:

[Error] run.csx(8,12): error CS1061: 'CloudBlockBlob' does not contain a definition for 'DeleteIfExists' and no extension method 'DeleteIfExists' accepting a first argument of type 'CloudBlockBlob' could be found (are you missing a using directive or an assembly reference?)

我错过了什么?根据文档,CloudBlockBlob 应该有一个名为 DeleteIfExists 的方法。

这是我的整个功能:

#r "Microsoft.WindowsAzure.Storage"

using Microsoft.WindowsAzure.Storage.Blob;

public static void Run(CloudBlockBlob myBlob, string name, ILogger log)
{
log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Properties.Length} Bytes");
myBlob.DeleteIfExists();
}

最佳答案

如果您使用的是 Functions v2,那么您可能正在使用 .NET Core 或 .NET Standard,它们似乎仅支持异步方法。请改用 await myblob.DeleteIfExistsAsync()

关于c# - 尝试删除 Azure Functions 中的 blob,但缺少 DeleteIfExists 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55044361/

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