5 instantiations of AtomicFile
ComSvcConfig (5)
ComplusEndpointConfigContainer.cs (2)
62this.configFile = new AtomicFile(Path.Combine(this.appDir, "application.config")); 63this.manifestFile = new AtomicFile(Path.Combine(this.appDir, "application.manifest"));
SvcFileManager.cs (2)
206return new SvcFile(appid, clsid, SvcFileState.Added, new AtomicFile(fileName)); 296return new SvcFile(appid, clsid, SvcFileState.Existing, new AtomicFile(fileName));
WasEndpointConfigContainer.cs (1)
49this.configFile = new AtomicFile(this.webDirectoryPath + "\\web.config");
9 references to AtomicFile
ComSvcConfig (9)
ComAdminWrapper.cs (2)
384AtomicFile.SafeDeleteFile(tlb); 410AtomicFile.SafeDeleteFile(tlb);
ComplusEndpointConfigContainer.cs (3)
32AtomicFile manifestFile; 33AtomicFile configFile; 72internal AtomicFile ConfigFile { get { return this.configFile; } }
SvcFileManager.cs (2)
152AtomicFile svcFile; 157SvcFile(Guid appid, Guid clsid, SvcFileState state, AtomicFile svcFile)
WasEndpointConfigContainer.cs (2)
29AtomicFile configFile; 63internal AtomicFile ConfigFile { get { return this.configFile; } }