Home
last modified time | relevance | path

Searched refs:responseName (Results 1 – 3 of 3) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
DIntermediateResponse.php35 protected $responseName; variable in FreeDSx\\Ldap\\Operation\\Response\\IntermediateResponse
43 * @param null|string $responseName
46 public function __construct(?string $responseName, ?string $responseValue) argument
48 $this->responseName = $responseName;
57 return $this->responseName;
100 if ($this->responseName !== null) {
101 $response->addChild(Asn1::context(0, Asn1::octetString($this->responseName)));
DExtendedResponse.php49 protected $responseName; variable in FreeDSx\\Ldap\\Operation\\Response\\ExtendedResponse
58 * @param null|string $responseName
61 …public function __construct(LdapResult $result, ?string $responseName = null, $responseValue = nul… argument
64 $this->responseName = $responseName;
75 return $this->responseName;
111 if ($this->responseName !== null) {
112 $asn1->addChild(Asn1::context(10, Asn1::octetString($this->responseName)));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
DResponseFactory.php79 …public function getExtendedError(string $message, int $errorCode, ?string $responseName = null): L… argument
83 new ExtendedResponse(new LdapResult($errorCode, '', $message), $responseName)