SearchEntry class

Search entry result produced by the search operation.

The LdapConnection.search method produces a SearchResult which contains a stream of these objects: each representing an entry that matched the search request.

Use the dn propperty to get the entry's distinguished name and the attributes properties to get the attributes which were returned.

The server may return a list of referral URIs instead of search results. The client can check for hasReferrals method

Constructors

SearchEntry(String _dn, {List<String> referrals = const []})
Constructor

Properties

attributes Map<String, Attribute>
Attributes returned by the search operation.
no setter
dn String
The entry's distinguished name.
no setter
hashCode int
The hash code for this object.
no setterinherited
hasReferrals bool
no setter
referrals List<String>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited