MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / QueryStringAttribute

Function QueryStringAttribute

Source/ThirdParty/tinyxml2/tinyxml2.h:1377–1384  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1375
1376 /// See QueryIntAttribute()
1377 XMLError QueryStringAttribute(const char* name, const char** value) const {
1378 const XMLAttribute* a = FindAttribute(name);
1379 if (!a) {
1380 return XML_NO_ATTRIBUTE;
1381 }
1382 *value = a->Value();
1383 return XML_SUCCESS;
1384 }
1385
1386
1387

Callers

nothing calls this directly

Calls 2

FindAttributeFunction · 0.85
ValueMethod · 0.45

Tested by

no test coverage detected