将 C# 代码中的值检索到 NLog.config 文件中

发布于 2024-11-19 17:53:52 字数 123 浏览 0 评论 0原文

是否可以使用 NLog.config 配置文件中的“变量”从某些 C# 代码中获取值?

我想使用“变量”的原因是检索用户先前在 Windows 窗体中输入的密码(我用来在数据库中记录信息)。

Is it possible to use "variables" in the NLog.config configuration file to get values from some C# code ?

The reason I want to use a "variable" is to retrieve the password (that I use to log info in my database) previously entered by the user in a windows form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丑丑阿 2024-11-26 17:53:52

我找到了答案:

我需要使用 全局诊断上下文类,如下所示:

  • 在 C# 代码中,设置变量: GlobalDiagnosticsContext.Set("myVariableName", "myValue");
  • NLog.config 文件,访问变量: ${gdc:item=myVariableName} 给我 "myValue"

I found the answer:

I need to use the Global Diagnostics Context class, like that:

  • In the C# code, set the variable: GlobalDiagnosticsContext.Set("myVariableName", "myValue");
  • In the NLog.config file, access to the variable : ${gdc:item=myVariableName} gives me "myValue"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文