如何捕获 NVelocity 中的 InvalidReference 错误
我在 .net 上使用 codeplex NVelocity 库,当我在 VelocityEngine 实例上执行 Evalute 方法并且未找到模板文本中的参数之一时,我想捕获错误。
我怎样才能获得这个?
我在 NVelocity.App.Event 命名空间中找到 IInvalidReferenceEventHandler 接口,但没有找到任何如何使用它的信息。任何帮助将不胜感激。
I am using codeplex NVelocity library on .net and i want to catch an error when I execute Evalute method on VelocityEngine instance and one of the parameter in template text was not found.
How can I obtain this?
I find IInvalidReferenceEventHandler interface in NVelocity.App.Event namespace but I dont't find any information how to use it. Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。
我已经创建了 EventHandler 类:
然后我在下面的代码中使用它:
I've found the solution.
I've made EventHandler class:
Then I use it in the code below: