将 C# 代码中的值检索到 NLog.config 文件中
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案:
我需要使用 全局诊断上下文类,如下所示:
GlobalDiagnosticsContext.Set("myVariableName", "myValue");
${gdc:item=myVariableName}
给我"myValue"
I found the answer:
I need to use the Global Diagnostics Context class, like that:
GlobalDiagnosticsContext.Set("myVariableName", "myValue");
${gdc:item=myVariableName}
gives me"myValue"