Description

This method is only available when marshalling std::vector objects, and provides equivalent functionality to the corresponding method on the native container as defined in the C++ standard. Note that this method does not marshal the container itself in order to perform the operation, so it is an efficient way to append items to an existing collection, however note that marshalling a collection is less efficient when done one element at a time, so this method should only be used where it is required to append data to a collection with existing data. In other cases, a local container should be populated with all the required data, and the entire collection marshalled back to the target.

Usage:

void push_back(const ElementType& element) const
void push_back(ElementType&& element) const

Argument list

element [ElementType]
The source object to append to the bound collection

See also