SSIS:好奇:为什么 FireInformation 方法中的最后一个参数是 ref bool?
我目前正在开发一个 SSIS 包,在第 80 次在脚本任务中使用 FireInformation 之后,我不得不想:为什么该方法要求您传入 ref 布尔值作为其最后一个参数?该文档没有说明方法返回后应如何响应该值。我在这里错过了什么吗?
I'm currently working on a SSIS package and after the 80th time using FireInformation inside a Script Task, I have to wonder: why would the method require you to pass in a ref boolean as its last parameter? The documentation doesn't state anything about how you should respond to the value once the method returns. Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
运行时引擎能够修改“fireAgain”参数并防止进一步触发事件。为此,运行时必须有权修改变量。仅当参数通过 ref 传递时才能执行此操作。
The run-time engine has the ability to modify the “fireAgain” parameter and prevent the further firing of events. In order to do this, the run-time must have access to modify the variable. It can only do this if the parameter is passed by ref.
它是 fireAgain 参数。
It is fireAgain parameter.