Add pump identified by the string version of the pump_id (guid string) to the specified list. The list id may come from either search(design_point, UInt32, Int32, UnitSystem, optional_criteria) or new_list(design_point, UInt32, UnitSystem). Same as calling add_pump_with_stages and passing a stage value of 1.

Namespace: configuration_services
Assembly: configuration_services (in configuration_services.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
uint add_pump_by_id_string(
	uint list_id,
	int cat_id,
	string pump_id
)
Visual Basic
Function add_pump_by_id_string ( _
	list_id As UInteger, _
	cat_id As Integer, _
	pump_id As String _
) As UInteger
Visual C++
unsigned int add_pump_by_id_string(
	unsigned int list_id, 
	int cat_id, 
	String^ pump_id
)

Parameters

list_id
Type: System..::..UInt32
Add pump to this list
cat_id
Type: System..::..Int32
Pump exists in this catalog
pump_id
Type: System..::..String
string-based pump id (guid)

Return Value

pump_state_id for the newly added pump

See Also