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:
Gets chat message by message ID.
- Parameters
-
- Returns
- If the function succeeds, it returns object ZoomSDKChatInfo. Otherwise, this function fails and returns nil.
◆ getMaxTransferFileSizeBytes
| - (unsigned long long) getMaxTransferFileSizeBytes |
|
|
|
Gets the maximum size for file transfer.
- Returns
- The maximum number of bytes for file transfer.
◆ getTransferFileTypeAllowList
| - (NSString *_Nullable) getTransferFileTypeAllowList |
|
|
|
Gets 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. Otherwise, this function fails and returns nil.
◆ isFileTransferEnabled
| - (BOOL) isFileTransferEnabled |
|
|
|
Determines whether file transfer is enabled.
- Returns
- YES if file transfer is enabled. Otherwise, NO.
◆ sendChatMsgTo:
Sends a chat message.
- Parameters
-
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ transferFile:toUser:
| - (ZoomSDKError) transferFile: |
|
(NSString *) | filePath |
| toUser: |
|
(unsigned int) | userId |
Sends file to specify user in current meeting.
- Parameters
-
| filePath | The file's absolute path. |
| userId | Send the file to this user. |
- Returns
- If the function succeeds, it returns
ZoomSDKError_Success. Otherwise, this function returns an error.
- Warning
- This interface related chat privilege. See ZoomSDKChatPrivilegeType.
◆ transferFileToAll:
Sends file to all users in current meeting.
- Parameters
-
| filePath | The file's absolute path. |
- Returns
- If the function succeeds, it returns
ZoomSDKError_Success. Otherwise, this function returns an error.
- Warning
- This interface related chat privilege. See ZoomSDKChatPrivilegeType.
◆ delegate