이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

메시지 비우기

Feature Description

One-to-one messages and group messages can be cleared. When messages in a conversation are cleared, all the messages in the conversation will be cleared both locally and from the cloud, but the conversation itself will not be deleted.
Note:
Do not use this API if you do not want to clear messages from the cloud.
If the last message is deleted, the lastMessage in the conversation will become the last but one message.

Clearing one-to-one messages

Call MsgClearHistoryMessage (Details) to clear one-to-one messages.
Sample code:
TIMResult res = TencentIMSDK.MsgClearHistoryMessage(conv_id, TIMConvType.kTIMConv_C2C, (int code, string desc, string user_data) => {
// Process the callback logic
});

Clearing group messages

Call MsgClearHistoryMessage (Details) to clear group messages.
Sample code:
TIMResult res = TencentIMSDK.MsgClearHistoryMessage(conv_id, TIMConvType.kTIMConv_Group, (int code, string desc, string user_data) => {
// Process the callback logic
});