2 instantiations of SvcFile
ComSvcConfig (2)
SvcFileManager.cs (2)
206return new SvcFile(appid, clsid, SvcFileState.Added, new AtomicFile(fileName)); 296return new SvcFile(appid, clsid, SvcFileState.Existing, new AtomicFile(fileName));
13 references to SvcFile
ComSvcConfig (13)
SvcFileManager.cs (13)
30Dictionary<Guid, SvcFile> svcFiles; 35this.svcFiles = new Dictionary<Guid, SvcFile>(); 41SvcFile svcFile = SvcFile.OpenExisting(fileName); 51foreach (SvcFile file in svcFiles.Values) 59SvcFile svcFile = null; 68svcFile = SvcFile.CreateNew(this.webDirectoryPath, appid, clsid); 75SvcFile svcFile = null; 104foreach (SvcFile file in svcFiles.Values) 112foreach (SvcFile file in svcFiles.Values) 120SvcFile svcFile; 165public static SvcFile CreateNew(string webDirectoryPath, Guid appid, Guid clsid) 228public static SvcFile OpenExisting(string fileName)