Home
last modified time | relevance | path

Searched refs:responseValue (Results 1 – 3 of 3) sorted by last modified time

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DPasswordModifyResponse.php61 $this->responseValue = Asn1::sequence(Asn1::context(0, Asn1::octetString($this->generatedPassword)));
H A DExtendedResponse.php30 * responseValue [11] OCTET STRING OPTIONAL }
54 protected $responseValue;
59 * @param null|string $responseValue
61 public function __construct(LdapResult $result, ?string $responseName = null, $responseValue = null)
63 $this->responseValue = $responseValue;
85 return is_string($this->responseValue) ? $this->responseValue : null;
114 if ($this->responseValue !== null) {
116 $value = $this->responseValue;
48 protected $responseValue; global() variable in FreeDSx\\Ldap\\Operation\\Response\\ExtendedResponse
55 __construct(LdapResult $result, string $responseName = null, $responseValue = null) global() argument
[all...]
H A DIntermediateResponse.php24 * responseValue [1] OCTET STRING OPTIONAL }
40 protected $responseValue;
44 * @param null|string $responseValue
46 public function __construct(?string $responseName, ?string $responseValue)
49 $this->responseValue = $responseValue;
65 return $this->responseValue;
103 if ($this->responseValue !== null) {
104 $response->addChild(Asn1::context(1, Asn1::octetString($this->responseValue)));
39 protected $responseValue; global() variable in FreeDSx\\Ldap\\Operation\\Response\\IntermediateResponse
45 __construct(string $responseName, string $responseValue) global() argument