Containers
This group contains interfaces for handling containers.
General information
A container is basically a vector of several elements. The number of elements can be changed dynamically. The corresponding memory in the router memory is automatically allocated and released for this purpose.
Container types
All elements of a container have the same type. Containers are characterized by a unique GUID based on the type of elements they contain. For ease of use, these GUIDs are defined by constants. All type designations for containers begin with "ContainerType_Vector_" (with the exception of "ContainerType_String_SINT“). Type requirements are documented for all API elements that make use of containers.
The container type can be determined as follows:
ipContainer.GetElementTypeGuid(nTypeGuid);
Further Information