Azure Functions - 共享类

Azure Functions - Shared classes(Azure Functions - 共享类)
本文介绍了Azure Functions - 共享类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的 Azure Functions 上使用一些共享类来避免重复代码.

I want to use some shared classes on my Azure Functions to not duplicate code.

我尝试创建一个空的 C# 函数并在函数内部创建类,然后导入到其他函数:

I have tried to create a empty C# function and create the classes inside the function and then import to the other functions with:

#r "../Shared/Class.cs"

推荐答案

首先,将您的共享代码放在 Function App 目录根目录下的文件夹中(例如Shared").假设我在该文件夹中放置了一个共享的 Message.csx 类(例如完整路径 D:homesitewwwrootSharedMessage.csx).

First, put your shared code inside a folder in the root of your Function App directory (e.g. "Shared"). Let's say I put a shared Message.csx class in that folder (e.g. full path D:homesitewwwrootSharedMessage.csx).

要将其包含到您的函数中,请使用 #load 命令:

To include this into your function use the #load command:

#load "..SharedMessage.csx"

using System;
using Microsoft.Azure.WebJobs.Host;

public static void Run(Message message, TraceWriter log)
{
    log.Info($"C# Queue trigger function processed message: {message.Id}");
}

查看帮助页面此处了解更多信息信息.默认情况下,不会跟踪该目录中的文件的更改.如果您想确保当该目录中的文件发生更改时,您的函数将获取更改并重新编译,您可以将共享"目录添加到 host.json<中的 watchDirectories 列表中/代码>.例如:

See the help page here for more information. By default, the files in that directory won't be tracked for changes. If you want to ensure that when files in that directory change your functions will pick up the changes and be recompiled, you can add your "Shared" directory to the watchDirectories list in host.json. E.g.:

{
    "watchDirectories": [ "Shared" ]
}

这篇关于Azure Functions - 共享类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)