LdapSearchResults

Overview

LdapSearchResults is the list of elements returned by LdapClient.Search. It's a regular list of items that can be used with foreach or looping through the list using the Count and item properties of List<T>.

Location

  • Reference:
    • RemObjects.InternetPack.dll  .NET, .NET Core 5.0, .NET Standard 2.0
    • RemObjects.InternetPack.fx  Island
    • libRemObjects.InternetPack.fx  Toffee
  • Namespace: RemObjects.InternetPack.Ldap

Properties


Referals  virtual

Referals is a list of (optional) urls, containing urls that might hold more information about the records you are searching for.

 

property Referals: List<String> read;

 

List<String> Referals { get; }

 

var Referals: List<String> { get{} }

 

ReadOnly Property Referals() As List<String>

Instance Methods


constructor

Constructor for this class.

 

constructor

 

LdapSearchResults()

 

init()

 

Sub New()

Add  virtual

 

method Add(aObject: LdapObject)

 

void Add(LdapObject aObject)

 

func Add(_ aObject: LdapObject)

 

Sub Add(aObject As LdapObject)

Parameters:

  • aObject:

GetSequence  virtual

 

method GetSequence: IEnumerable<LdapObject>

 

IEnumerable<LdapObject> GetSequence()

 

func GetSequence() -> INSFastEnumeration<LdapObject>

 

Function GetSequence() As IEnumerable<LdapObject>