Example #1
0
 public static void setKey(KeysENUM key, string newValue)
 {
     try
     {
         setKey(key.ToString(), newValue);
     }
     catch (System.Exception ex)
     {
         NttDataWA.UIManager.AdministrationManager.DiagnosticError(ex);
     }
 }
Example #2
0
 public static string getKey(KeysENUM key, string defaultValue)
 {
     try
     {
         return(getKey(key.ToString(), defaultValue));
     }
     catch (System.Exception ex)
     {
         NttDataWA.UIManager.AdministrationManager.DiagnosticError(ex);
         return(null);
     }
 }
Example #3
0
 public static void setKey(KeysENUM key, string newValue)
 {
     setKey(key.ToString(), newValue);
 }
Example #4
0
 public static string getKey(KeysENUM key, string defaultValue)
 {
     return(getKey(key.ToString(), defaultValue));
 }
Example #5
0
 public static string getKey(KeysENUM key)
 {
     return(getKey(key.ToString(), null));
 }