示例#1
0
 public void RegisterImporter(string identifier, ImporterCreatorCallback callback)
 {
     this.registeredImporters.Add(identifier, new ImporterService.ImporterEntry(callback));
 }
示例#2
0
 public ImporterEntry(ImporterCreatorCallback callback)
 {
     this.callback = callback;
 }