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