gwdg.Ldap.dll 3.4.1

dotnet add package gwdg.Ldap.dll --version 3.4.1
                    
NuGet\Install-Package gwdg.Ldap.dll -Version 3.4.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="gwdg.Ldap.dll" Version="3.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="gwdg.Ldap.dll" Version="3.4.1" />
                    
Directory.Packages.props
<PackageReference Include="gwdg.Ldap.dll" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add gwdg.Ldap.dll --version 3.4.1
                    
#r "nuget: gwdg.Ldap.dll, 3.4.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package gwdg.Ldap.dll@3.4.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=gwdg.Ldap.dll&version=3.4.1
                    
Install as a Cake Addin
#tool nuget:?package=gwdg.Ldap.dll&version=3.4.1
                    
Install as a Cake Tool

Overview

Simple LDAP class to easily search and modify objects within a LDAP server. This package wraps some Classes around the Microsoft library System.DirectoryServices.Protocols.

Usage

On non windows systems the environment variable LDAPTLS_REQCERT should be set to "never" in order to connect via LDAPs. Otherwise it aborts with the unspecified message "LDAP server is not available".

Search objects

Create a searcher and start searching

LdapSearcher seacher = new("hostname", 636, "cn=admin,ou=admins,dc=example,dc=org", "mysecretpassword", useSsl: true);
# Search objects fased on a filter and define which attributes you want to read
List<LdapEntry> foundObjects = searcher.Search("ou=users,dc=example,dc=org", "(uid=mustermann)", "uid", "cn", "description")

foreach(LdapEntry entry in foundObjects)
{
    string uid = entry.Attributes["uid"].Values.First();

    // Do something
}

Search objects asynchronously

LdapSearcher seacher = new("hostname", 636, "cn=admin,ou=admins,dc=example,dc=org", "mysecretpassword", useSsl: true);
# Search objects fased on a filter and define which attributes you want to read
List<LdapEntry> foundObjects;
seacher.PartialResult += foundEntries =>
    {
        entries.AddRange(foundEntries);
        Console.Write($"\Search objects: {entries.Count()}");
    };

await searcher.SearchAsync("ou=users,dc=example,dc=org", "(uid=mustermann)", "uid", "cn", "description");

// if you cannot await you can use SearchCompleted property as well
while(!searcher.SearchCompleted)
    Thread.Sleep(50);

foreach(LdapEntry entry in foundObjects)
{
    string uid = entry.Attributes["uid"].Values.First();

    // Do something
}

Modify objects

entry.Attributes["someAttribute"].Clear();
entry.Attributes["description"].Replace("This in my new description");
entry.Attributes["someOtherAttribute"].Add("A new value");

LdapModifier modifier = new("hostname", 636, "cn=admin,ou=admins,dc=example,dc=org", "mysecretpassword", useSsl: true);
modifier.Modify(entry);
// or async
await modifier.ModifyAysnc(entry);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.4.1 45,177 5/9/2025
3.4.0 49,639 11/12/2024
3.3.0 43,957 10/7/2024
3.2.0 44,374 6/26/2024
3.1.0 43,853 5/2/2024
3.0.6 44,432 9/12/2023
3.0.5 44,235 9/7/2023
3.0.4 44,240 8/29/2023
3.0.3 44,235 8/29/2023
3.0.2 44,215 8/29/2023
3.0.1 44,247 8/16/2023
3.0.0 44,298 8/11/2023
2.1.3 46,228 11/21/2019
2.1.2 45,047 9/25/2019
2.1.1 44,745 9/25/2019
2.1.0 44,807 9/24/2019
2.0.1 414 9/5/2019
1.0.1 46,992 3/3/2016

Search, Create, Modify, Rename, Move and Delete objects within your LDAP