Add more than one pump to a list at a time. Pump's may be from a single catalog, or multiple.

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

Syntax

C#
DataTable add_multiple_pumps_by_id_string(
	uint list_id,
	List<pump_id_list> catalog_pump_lists
)
Visual Basic
Function add_multiple_pumps_by_id_string ( _
	list_id As UInteger, _
	catalog_pump_lists As List(Of pump_id_list) _
) As DataTable
Visual C++
DataTable^ add_multiple_pumps_by_id_string(
	unsigned int list_id, 
	List<pump_id_list^>^ catalog_pump_lists
)

Parameters

list_id
Type: System..::..UInt32
Target list for new pumps.
catalog_pump_lists
Type: System.Collections.Generic..::..List<(Of <(<'pump_id_list>)>)>
List of catalogs and associated pump_id strings. Specifing pump_ids that do not go with the referenced catalog_ids will throw errors.

Return Value

Pump list DataTable, same as if get_list(UInt32) was called.

See Also