⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ldapreferralexception.h

📁 OpenLdap是LDAP的开源项目
💻 H
字号:
/* * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#ifndef LDAP_REFERRAL_EXCEPTION_H#define LDAP_REFERRAL_EXCEPTION_H#include <list>#include <LDAPMessage.h>#include <LDAPUrlList.h>class LDAPUrlList;/** * This class extends LDAPException and is used to signalize Referrals * there were received during synchronous LDAP-operations */class LDAPReferralException : public LDAPException{    public :        /**         * Creates an object that is initialized with a list of URLs         */        LDAPReferralException(const LDAPUrlList& urls);        /**         * Destructor         */        ~LDAPReferralException();        /**         * @return The List of URLs of the Referral/Search Reference         */        const LDAPUrlList& getUrls();    private :        LDAPUrlList m_urlList;};#endif //LDAP_REFERRAL_EXCEPTION_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -