示例#1
0
 public bool getConfigBool(string paramName)
 {
     return(_config.GetValue <bool>(MoesifOptionsParamNames.asKey(paramName)));
 }
示例#2
0
 public int getConfigInt(string paramName)
 {
     return(_config.GetValue <int>(MoesifOptionsParamNames.asKey(paramName)));
 }
示例#3
0
 public string getConfigString(string paramName)
 {
     return(_config.GetValue <string>(MoesifOptionsParamNames.asKey(paramName)));
 }