示例#1
0
 /// <summary>
 /// Builds a command to send a VariablesSetF
 /// </summary>
 /// <param name="name">The name of the variable to set</param>
 /// <param name="value">The value to assign to the variable</param>
 /// <returns>The built command to dispatch</returns>
 public static ICommand VariablesSetF(CommonVariableNames name, List<String> value) {
     return VariablesSetF(name.ToString(), value);
 }
示例#2
0
 /// <summary>
 /// Builds a command to send a VariablesGet
 /// </summary>
 /// <param name="name">The name of the variable to set</param>
 /// <returns>The built command to dispatch</returns>
 public static ICommand VariablesGet(CommonVariableNames name) {
     return VariablesGet(name.ToString());
 }
示例#3
0
 /// <summary>
 /// Builds a command to send a VariablesSetA
 /// </summary>
 /// <param name="name">The name of the variable to set</param>
 /// <param name="value">The value to assign to the variable</param>
 /// <returns>The built command to dispatch</returns>
 public static ICommand VariablesSetA(CommonVariableNames name, String value) {
     return VariablesSetA(name.ToString(), value);
 }