stream property

Stream of search entries.

The stream can be listened to by either: await for (SearchEntry entry in searchResult.stream) { doSomething; } or searchResult.stream.listen((SearchEntry entry) => doSomething));

Some exceptions

LdapResultNoSuchObjectException thrown when the search finds zero entries that match.

Implementation

Stream<SearchEntry> get stream => _stream;