Provide APIs to manage in-meeting chat messages and file transfers.
More...
#include <ZoomSDKMeetingChatController.h>
Inherits NSObject.
Provide APIs to manage in-meeting chat messages and file transfers.
Definition at line 675 of file ZoomSDKMeetingChatController.h.
◆ getChatMessageById:
Get chat message by message ID.
- Parameters
-
- Returns
- If the function succeeds, it will return object ZoomSDKChatInfo.
◆ getMaxTransferFileSizeBytes
- (unsigned long long) getMaxTransferFileSizeBytes |
|
|
|
Get the maximum size for file transfer.
- Returns
- The maximum number of bytes for file transfer.
◆ getTransferFileTypeAllowList
- (NSString *_Nullable) getTransferFileTypeAllowList |
|
|
|
Get the list of allowed file types in transfer.
- Returns
- The value of allowed file types in transfer, comma-separated if there are multiple values. Exe files are, by default, forbidden from being transferred.
◆ isFileTransferEnabled
- (BOOL) isFileTransferEnabled |
|
|
|
Determine whether file transfer is enabled.
- Returns
- True if file transfer is enabled, otherwise false.
◆ sendChatMsgTo:
Send a chat message.
- Parameters
-
- Returns
- If the function succeeds, it will return ZoomSDKError_Success.
◆ transferFile:toUser:
- (ZoomSDKError) transferFile: |
|
(NSString *) | filePath |
toUser: |
|
(unsigned int) | userId |
Send file to specify user in current meeting.
- Parameters
-
filePath | The absolute path of the file. |
userId | Send the file to this user. |
- Returns
- If the function succeeds, the return value is
ZoomSDKError_Success
.
- Warning
- This interface related chat privilege. See ZoomSDKChatPrivilegeType.
◆ transferFileToAll:
Send file to all users in current meeting.
- Parameters
-
filePath | The absolute path of the file. |
- Returns
- If the function succeeds, the return value is
ZoomSDKError_Success
.
- Warning
- This interface related chat privilege. See ZoomSDKChatPrivilegeType.
◆ delegate