Пример #1
0
        public LdapException(LdapExceptionData data) : base(data.ToString())
        {
            if (data.Result != null)
            {
                ResultCode = (Native.Native.ResultCode)data.Result;
            }

            if (data.Response != null)
            {
                Response = data.Response;
            }
        }
Пример #2
0
 public LdapOperationException(DirectoryResponse response, string message, string method, int res, string details) : base(message, method, res, details)
 {
     Response = response;
 }
Пример #3
0
 public LdapOperationException(DirectoryResponse response, string message, int res) : base(message, res)
 {
     Response = response;
 }