clearC2CHistoryMessage
Introduction
Clear all the history messages for a c2c conversation, chat with another specific user, on both local and remote server, without the deleting of conversation.
Do not works on Web.
Please do not invoke this method, if not necessary to clear the message on server.
Parameter details
Parameter name | Parameter type | Required | Platform | Description |
---|---|---|---|---|
userID | String | yes | All | The ID of the user to clear history messages. |
Returned template
V2TimCallback
{
code : int
desc : String
}
Return value details
name | type | description |
---|---|---|
code | int | Request result: Error codes. 0 means success. |
desc | String | The description of the failure. |
Code example
V2TimCallback clearC2CHistoryMessageRes = await TencentImSDKPlugin
.v2TIMManager
.getMessageManager()
.clearC2CHistoryMessage(userID: "userID");
if (clearC2CHistoryMessageRes.code == 0) {
}