gpt4 book ai didi

c# - 什么是 ldap 连接的默认超时

转载 作者:太空宇宙 更新时间:2023-11-03 14:58:16 27 4
gpt4 key购买 nike

我有 Ldap 连接。请在下面找到代码片段:-

 public LdapConnection BindLDAPConnection()
{
var flag = 0;
_ldapConnectionUsers = GetLDAPConnection();
_ldapConnectionUsers.AuthType = AuthType.Basic;
_ldapConnectionUsers.SessionOptions.SecureSocketLayer = false;
_ldapConnectionUsers.SessionOptions.ProtocolVersion = 3;
_ldapConnectionUsers.SessionOptions.VerifyServerCertificate =
ServerCallback;
//ldap.SessionOptions.VerifyServerCertificate =
// (con, cer) => true;
password = GetPasswordForUser();
NetworkCredential network = LdapHelper.GetNetworkCredentials();
_ldapConnectionUsers.Timeout=new TimeSpan(0,0,10,0);
_ldapConnectionUsers.Bind(network);
return _ldapConnectionUsers;
}

在配置部分,我需要为这个连接设置超时。

ldap 连接的默认超时时间是多少?

这样我就可以在配置部分给出默认超时时间?

最佳答案

关于c# - 什么是 ldap 连接的默认超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47749769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com