Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DExtendedResponse.php29 * responseName [10] LDAPOID OPTIONAL,
49 protected $responseName;
58 * @param null|string $responseName
61 public function __construct(LdapResult $result, ?string $responseName = null, $responseValue = null)
64 $this->responseName = $responseName;
75 return $this->responseName;
111 if ($this->responseName !== null) {
112 $asn1->addChild(Asn1::context(10, Asn1::octetString($this->responseName)));
43 protected $responseName; global() variable in FreeDSx\\Ldap\\Operation\\Response\\ExtendedResponse
55 __construct(LdapResult $result, string $responseName = null, $responseValue = null) global() argument
H A DIntermediateResponse.php23 * responseName [0] LDAPOID OPTIONAL,
35 protected $responseName;
43 * @param null|string $responseName
46 public function __construct(?string $responseName, ?string $responseValue)
48 $this->responseName = $responseName;
57 return $this->responseName;
100 if ($this->responseName !== null) {
101 $response->addChild(Asn1::context(0, Asn1::octetString($this->responseName)));
34 protected $responseName; global() variable in FreeDSx\\Ldap\\Operation\\Response\\IntermediateResponse
45 __construct(string $responseName, string $responseValue) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DResponseFactory.php79 public function getExtendedError(string $message, int $errorCode, ?string $responseName = null): LdapMessageResponse
83 new ExtendedResponse(new LdapResult($errorCode, '', $message), $responseName)
78 getExtendedError(string $message, int $errorCode, string $responseName = null) global() argument