|
Video SDK for iOS API Reference
|
A class to operate the instant message in session. More...
#include <ZoomVideoSDKChatHelper.h>
Inherits NSObject.
Instance Methods | |
| (ZoomVideoSDKError) | - SendChatToUser:Content: |
| Sends a chat message to a specific user. | |
| (ZoomVideoSDKError) | - SendChatToAll: |
| Sends a chat message to all users. | |
| (BOOL) | - canChatMessageBeDeleted: |
| Determines whether a specific message can be deleted. | |
| (ZoomVideoSDKError) | - deleteChatMessage: |
| Deletes a specific chat message from the Zoom server. | |
| (BOOL) | - IsChatDisabled |
| Determines whether chat is disabled. | |
| (BOOL) | - IsPrivateChatDisabled |
| Determines whether private chat is disabled. | |
| (ZoomVideoSDKError) | - changeChatPrivilege: |
| Sets participant chat privilege when in session. | |
| (ZoomVideoSDKChatPrivilegeType) | - getChatPrivilege |
| Gets participant chat privilege when in session. | |
A class to operate the instant message in session.
Definition at line 53 of file ZoomVideoSDKChatHelper.h.
| - (BOOL) canChatMessageBeDeleted: | (NSString *__nonnull) | msgID |
Determines whether a specific message can be deleted.
| msgID | The message ID. |
| - (ZoomVideoSDKError) changeChatPrivilege: | (ZoomVideoSDKChatPrivilegeType) | privilege |
Sets participant chat privilege when in session.
| privilege | The chat privilege of the participant. |
| - (ZoomVideoSDKError) deleteChatMessage: | (NSString *__nonnull) | msgID |
Deletes a specific chat message from the Zoom server.
| msgID | The message ID. |
| - (ZoomVideoSDKChatPrivilegeType) getChatPrivilege |
Gets participant chat privilege when in session.
References getChatPrivilege.
Referenced by getChatPrivilege.
| - (BOOL) IsChatDisabled |
Determines whether chat is disabled.
References IsChatDisabled.
Referenced by IsChatDisabled.
| - (BOOL) IsPrivateChatDisabled |
Determines whether private chat is disabled.
References IsPrivateChatDisabled.
Referenced by IsPrivateChatDisabled.
| - (ZoomVideoSDKError) SendChatToAll: | (NSString *_Nullable) | content |
Sends a chat message to all users.
| content | The message content. |
| - (ZoomVideoSDKError) SendChatToUser: | (ZoomVideoSDKUser *_Nullable) | user | |
| Content: | (NSString *_Nullable) | content |
Sends a chat message to a specific user.
| user | The receiver. |
| content | The message content. |