如何在 WF4 工作流服务的自定义活动设计器中读取 Web.Config 文件
我有一个带有自定义活动和自定义设计器(WPF)的 WF 服务。我想添加一个验证来检查 web.config 文件中是否存在某些值。
在运行时我可以重载 void CacheMetadata(ActivityMetadata 元数据)< /a> 因此我可以使用 System 愉快地进行验证.Configuration.ConfigurationManager 读取配置文件。
由于我也想在设计时执行此操作,因此我一直在寻找一种在设计器中执行此操作的方法。
I have a WF service with a custom activity and a custom designer (WPF). I want to add a validation that will check for the presence of some value in the web.config file.
At runtime I can overload void CacheMetadata(ActivityMetadata metadata) and thus I can do the validation happily there using System.Configuration.ConfigurationManager to read the config file.
Since I also want to do this at design time, I was looking for a way to do this in the designer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我有一个解决方案:
注意:别忘了这里可能需要一船 try catch
Ok I have one solution:
Note: Don't forget you'll probably need a boat load of try catches in here