OneLogin_Saml2_Response::_query PHP Méthode

_query() private méthode

Extracts nodes that match the query from the DOMDocument (Response Menssage)
private _query ( string $query ) : DOMNodeList
$query string Xpath Expresion
Résultat 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);
        }
    }