ShoppingCartServiceAddHlo Method

Adds a single new HLO (High Level Object) to the NetFORUM server-side shopping cart. This method should only be used if no other methods in IShoppingCartService can accomplish the desired result.

Definition

Namespace: Ignition.Commerce.Shopping
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public void AddHlo(
	string hloCollection,
	NetForumEntity hlo
)

Parameters

hloCollection  String
The name of the collection that this HLO is a part of. Should correspond to a pre-existing hardcoded netFORUM baseline collection name.
hlo  NetForumEntity
Entity containing the values to set on the new HLO. The entity should be of a type which has a business object set via NetForumBusinessObjectAttribute, and which is appropriate for the predefined collection referenced by hloCollection.

Remarks

No validation is performed on hlo. Setting invalid values may cause NetFORUM internal errors or have other unexpected results.

See Also