123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /*!
- * \~chinese
- * @header EMOptions+PrivateDeploy.h
- * @abstract SDK私有部署属性
- * @author Hyphenate
- * @version 3.0
- *
- * \~english
- * @header EMOptions+PrivateDeploy.h
- * @abstract SDK setting options of private deployment
- * @author Hyphenate
- * @version 3.0
- */
- #import "EMOptions.h"
- @interface EMOptions (PrivateDeploy)
- /*!
- * \~chinese
- * 是否允许使用DNS, 默认为YES
- *
- * 只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改。
- *
- * \~english
- * Whether to allow using DNS, default is YES
- *
- * Can only be set when initializing the SDK [EMClient initializeSDKWithOptions:], cannot be altered in runtime
- */
- @property (nonatomic, assign) BOOL enableDnsConfig;
- /*!
- * \~chinese
- * IM服务器端口
- *
- * enableDnsConfig为NO时有效。只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改
- *
- * \~english
- * IM server port
- *
- * chatPort is Only effective when isDNSEnabled is NO.
- * Can only be set when initializing the SDK with [EMClient initializeSDKWithOptions:], cannot be altered in runtime
- */
- @property (nonatomic, assign) int chatPort;
- /*!
- * \~chinese
- * IM服务器地址
- *
- * enableDnsConfig为NO时生效。只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改
- *
- * \~english
- * IM server
- *
- * chatServer is Only effective when isDNSEnabled is NO. Can only be set when initializing the SDK with [EMClient initializeSDKWithOptions:], cannot be altered in runtime
- */
- @property (nonatomic, copy) NSString *chatServer;
- /*!
- * \~chinese
- * REST服务器地址
- *
- * enableDnsConfig为NO时生效。只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改
- *
- * \~english
- * REST server
- *
- * restServer Only effective when isDNSEnabled is NO. Can only be set when initializing the SDK with [EMClient initializeSDKWithOptions:], cannot be altered in runtime
- */
- @property (nonatomic, copy) NSString *restServer;
- /*!
- * \~chinese
- * DNS URL 地址
- *
- * enableDnsConfig为YES时生效,只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改
- *
- * \~english
- * DNS url
- *
- * dnsURL Only effective when isDNSEnabled is YES. Can only be set when initializing the SDK with [EMClient initializeSDKWithOptions:], cannot be altered in runtime
- */
- @property (nonatomic, copy) NSString *dnsURL;
- /*!
- * \~chinese
- * 配置项扩展
- *
- * \~english
- * Options extension
- *
- */
- @property (nonatomic, strong) NSDictionary *extension;
- /*!
- * \~chinese
- * 多人音视频Url域名,格式为wss://mprtc.easemob.com
- *
- * enableDnsConfig为NO时生效。只能在[EMClient initializeSDKWithOptions:]中设置,不能在程序运行过程中动态修改
- *
- * \~english
- * the domain of conference call
- *
- */
- @property (nonatomic, copy) NSString *rtcUrlDomain;
- @end
|