Example #1
0
 protected override void ParserAppId(PropertiesFileParserService service)
 {
     KernelSettings.AppId = service.GetValue("AppId");
     KernelSettings.AppName = service.GetValue("AppName");
     KernelSettings.Key = service.GetValue("Key");
     return;
 }
Example #2
0
 protected abstract void ParserAppId(PropertiesFileParserService service);
Example #3
0
 public void Init(string path)
 {
     PropertiesFileParserService service = new PropertiesFileParserService(path);
     ParserAppId(service);
 }