From bb9a131c413bce8ae05dc9ff16554ef3f9f6d062 Mon Sep 17 00:00:00 2001 From: Yvan Duhamel Date: Fri, 16 Feb 2024 14:48:10 +0100 Subject: [PATCH] Update LDAPProviderConfiguration.cs --- .../Configuration/LDAPProviderConfiguration.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Configuration/LDAPProviderConfiguration.cs b/Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Configuration/LDAPProviderConfiguration.cs index 46f1705..196127c 100644 --- a/Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Configuration/LDAPProviderConfiguration.cs +++ b/Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Configuration/LDAPProviderConfiguration.cs @@ -23,8 +23,8 @@ public interface ILdapProviderSettings ClaimTypeConfigCollection ClaimTypes { get; } /// - /// Gets or sets whether to skip Microsoft Entra ID lookup and consider any input as valid. - /// This can be useful to keep people picker working even if connectivity with the Azure server is lost. + /// Gets or sets whether to skip the requests to LDAP and consider any input as valid. + /// This can be useful to keep people picker working even if connectivity with the directory is lost. /// bool AlwaysResolveUserInput { get; } @@ -34,7 +34,7 @@ public interface ILdapProviderSettings bool FilterExactMatchOnly { get; } /// - /// Gets or sets whether to return the Microsoft Entra ID groups that the user is a member of. + /// Gets or sets whether to return the trusted groups that the user is a member of. /// bool EnableAugmentation { get; } @@ -44,17 +44,17 @@ public interface ILdapProviderSettings string EntityDisplayTextPrefix { get; } /// - /// Gets or sets the timeout in milliseconds before an operation to Microsoft Entra ID is canceled. + /// Gets or sets the timeout in seconds before an operation to LDAP directory is canceled. /// int Timeout { get; } /// - /// This property is not used by EntraCP and is available to developers for their own needs + /// This property is not used by LDAPCP and is available to developers for their own needs /// string CustomData { get; } #endregion - #region EntraID specific settings + #region LDAP specific settings /// /// Gets the list of Azure tenants to use to get entities /// @@ -78,7 +78,7 @@ public class LdapProviderSettings : ILdapProviderSettings public string CustomData { get; set; } #endregion - #region EntraID specific settings + #region LDAP specific settings public List LdapConnections { get; set; } = new List(); public bool FilterEnabledUsersOnly { get; set; } = true; public bool FilterSecurityGroupsOnly { get; set; } = true;