public bool getConfigBool(string paramName)
 {
     return(_config.GetValue <bool>(MoesifOptionsParamNames.asKey(paramName)));
 }
 public int getConfigInt(string paramName)
 {
     return(_config.GetValue <int>(MoesifOptionsParamNames.asKey(paramName)));
 }
 public string getConfigString(string paramName)
 {
     return(_config.GetValue <string>(MoesifOptionsParamNames.asKey(paramName)));
 }