当前位置:  开发笔记 > 编程语言 > 正文

TransactedInstaller与嵌套安装程序

如何解决《TransactedInstaller与嵌套安装程序》经验,为你挑选了1个好方法。

这是否有区别(嵌套安装程序)

ServiceInstaller si = new ServiceInstaller();
si.ServiceName = "MyService";

ServiceProcessInstaller spi = new ServiceProcessInstaller();
spi.Account = ServiceAccount.LocalSystem;

spi.Installers.Add(si);

this.Installers.Add(spi);  

还有这个?(TransactedInstaller)

TransactedInstaller ti = new TransactedInstaller();

ServiceInstaller si = new ServiceInstaller();
si.ServiceName = "MyService";
ti.Installers.Add(si);

ServiceProcessInstaller spi = new ServiceProcessInstaller();
spi.Account = ServiceAccount.LocalSystem;
ti.Installers.Add(spi);

this.Installers.Add(ti);   

嵌套安装程序是否默认处理?应该选择哪种款式?



1> Shay Erlichm..:

如果自定义操作成功/失败, TransactedInstaller将自动调用Commit/Rollback.

使用嵌套安装程序,您将需要在发生错误的情况下对回滚/提交您自己进行排序,如果您没有明确告诉它们运行,则不会调用它们.

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有