Discuss this help topic in SecureBlackbox Forum

TElLDAPSClient.SearchURL

TElLDAPSClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Performs search by URL.

Declaration

[C#]
    static TElLDAPResponse SearchURL(string URL);

[VB.NET]
    Shared Function SearchURL(ByVal URL As String) As TElLDAPResponse

[Pascal]
    class function SearchURL(const URL : string) : TElLDAPResponse;

[C++]
    static TElLDAPResponseHandle SearchURL(const std::string &URL);

[PHP]
    TElLDAPResponse SearchURL(string $URL)

[Java]
    static TElLDAPResponse searchURL(TElLDAPSClient> this, String URL);

Parameters

  • URL - the URL by which to perform search

Return value

    Returns server response.

Description

    This function is similar to ordinary Search, only instead of different search parameters, search parameters are specified in the URL. The format of the URL is the following: "ldap://host:port/dn?attributes?scope?filter?extensions", where the name/value pairs in query string correspond to parameters of the Search method.

See also:     Search    

Discuss this help topic in SecureBlackbox Forum