|
virtual P6R::P6ERR P6R::p6ISAX2Attributes::getIndexByURI |
( |
P6SAX2STRING * |
pURI, |
|
|
P6SAX2STRING * |
pLocalName, |
|
|
P6UINT32 * |
pIndex | |
|
) |
| | [pure virtual] |
Given the namespace URI and local name (e.g., given 'X:abc=', 'abc' is referred to as the local name) return the index value into an array of all attributes stored in this object.
- Parameters:
-
| pURI | [IN] Each namespace is uniquely identified by a fully qualified URI |
| pLocalName | [IN] which attribute of the namespace are we concerned about |
| pIndex | [OUT] A handle that can be used to obtain all info about an attribute matching the URI (zero-based). |
- Returns:
Success | P6R::eOk | |
Failure | P6R::eInvalidArg | pURI, pLocalName, or pIndex is NULL. |
P6R::eNotFound | No value found matching the namespace. |
|