pub unsafe fn get_ns_prop(
node: *mut _xmlNode,
name: *const xmlChar,
_name_space: *const xmlChar,
) -> *mut xmlCharExpand description
Get a namespaced attribute value.
§UPSTREAM-PARITY
xmlChar *xmlGetNsProp(xmlNodePtr node, const xmlChar *name, const xmlChar *nameSpace);Returns the attribute value, or NULL if not found.
§SAFETY
nodemust be a valid pointer to an _xmlNode, or NULL.namemust be a valid null-terminated string.nameSpacemay be NULL.