public static void SetKeywordValue(string name, string value, PerformanceMode performanceMode) { var performanceKey = uniqueKey + name; Func <string, string, bool> fnc = SetKeywordValueToSettings; var args = new object[] { name, value }; PerformanceHelper.Update <string>(performanceMode, performanceKey, value, fnc, args); }