gpt4 book ai didi

azure - Azure 函数的 Hub 启动时是否可以运行代码?

转载 作者:行者123 更新时间:2023-12-04 14:39:45 24 4
gpt4 key购买 nike

我想在 Azure Function 的中心启动时运行代码,并确保在该中心调用任何 Azure 函数之前执行该代码。我可以这样做吗?

最佳答案

鉴于您正在使用预编译的 C# 函数,您可以将初始化代码放入静态构造函数中:

public static class MyFunctionApp
{
static MyFunctionApp()
{
// Runs once when class is first loaded
}

public void Run([SomeTrigger] input)
{
// Runs on each event
}
}

关于azure - Azure 函数的 Hub 启动时是否可以运行代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45494953/

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