Beispiel #1
0
 /// <summary>
 /// Retrieves all variables of a given process instance.
 /// </summary>
 /// <returns></returns>
 public Task <Dictionary <string, VariableValue> > GetAll() => _api.GetVariables(_processInstanceId);
 /// <summary>
 /// Retrieves all variables of a given process instance.
 /// </summary>
 /// <param name="deserializeValues">Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side.</param>
 public Task <Dictionary <string, VariableValue> > GetAll(bool deserializeValues = true) => _api.GetVariables(_processInstanceId, deserializeValues);