Ejemplo n.º 1
0
 public static void setKey(KeysENUM key, string newValue)
 {
     try
     {
         setKey(key.ToString(), newValue);
     }
     catch (System.Exception ex)
     {
         NttDataWA.UIManager.AdministrationManager.DiagnosticError(ex);
     }
 }
Ejemplo n.º 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);
     }
 }
Ejemplo n.º 3
0
 public static void setKey(KeysENUM key, string newValue)
 {
     setKey(key.ToString(), newValue);
 }
Ejemplo n.º 4
0
 public static string getKey(KeysENUM key, string defaultValue)
 {
     return(getKey(key.ToString(), defaultValue));
 }
Ejemplo n.º 5
0
 public static string getKey(KeysENUM key)
 {
     return(getKey(key.ToString(), null));
 }