Si utiliza este mandato para buscar un elemento en un mensaje que pertenece a un dominio preparado para espacios de nombres, la búsqueda sólo se realiza en los elementos cuyo espacio de nombres es una serie de caracteres vacía. Si desea realizar una búsqueda de elementos en cualquier espacio de nombres, utilice uno de los mandatos cniSearchElementNamespace.
CciElement* cniSearchFirstChild( int* returnCode, CciElement* targetElement, CciCompareMode* mode, CciElementType type, CciChar name);
CciElement* cniSearchLastChild( int* returnCode, CciElement* targetElement, CciCompareMode* mode, CciElementType type, CciChar name);
CciElement* cniSearchNextSibling( int* returnCode, CciElement* targetElement, CciCompareMode* mode, CciElementType type, CciChar name);
CciElement* cniSearchPreviousSibling( int* returnCode, CciElement* targetElement, CciCompareMode* mode, CciElementType type, CciChar name);
int rc; CciElement* firstChild = cniSearchFirstChild( &rc, inRootElement, CCI_COMPARE_MODE_NAME, elementName, 0);