OneLogin_Saml2_Response::_query PHP Method

_query() private method

Extracts nodes that match the query from the DOMDocument (Response Menssage)
private _query ( string $query ) : DOMNodeList
$query string Xpath Expresion
return DOMNodeList The queried nodes
    private function _query($query)
    {
        if ($this->encrypted) {
            return OneLogin_Saml2_Utils::query($this->decryptedDocument, $query);
        } else {
            return OneLogin_Saml2_Utils::query($this->document, $query);
        }
    }