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.
Namespace: Ignition.Commerce.ShoppingAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public void AddHlo(
string hloCollection,
NetForumEntity hlo
)
Public Sub AddHlo (
hloCollection As String,
hlo As NetForumEntity
)
public:
virtual void AddHlo(
String^ hloCollection,
NetForumEntity^ hlo
) sealed
abstract AddHlo :
hloCollection : string *
hlo : NetForumEntity -> unit
override AddHlo :
hloCollection : string *
hlo : NetForumEntity -> unit
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.
No validation is performed on hlo. Setting invalid values may cause NetFORUM internal errors or have other unexpected results.