public ParameterCollection Parameters {get;}
Parameters are used throughout the Exago application to store values. Although parameters can be created and given a default value in the Administration Console, parameters are designed to be set at runtime through the API.
Parameters are Parameter objects and are managed through a ParameterCollection object, accessible through this property.
public ParameterCollection Parameters {get;}
Api api = new Api("C:\\Program Files\\Exago\\ExagoWeb\\"); api.Parameters.GetParameter("userId").Value = textBox1.Text; api.Parameters.GetParameter("companyId").Value = textBox2.Text;