会话草稿
保存草稿
- 保存一条草稿内容至指定会话。
- 保存草稿会更新会话的
sentTime
,该会话会排在列表前部。
方法
int saveDraftMessage(
RCIMConversationType type,
string targetId,
string channelId,
string draft
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
draft | string | 草稿的文字内容 |
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
int code = engine.saveDraftMessage(
type,
targetId,
channelId,
draft
);
回调方法
- setOnDraftMessageSavedListener
delegate void OnDraftMessageSavedDelegate(int code,
RCIMConversationType type,
string targetId,
string channelId,
string draft);
OnDraftMessageSavedDelegate onDraftMessageSaved;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMConversationType | 调用接口时传入的会话类型 |
targetId | string | 调用接口时传入的会话ID |
channelId | string | 调用接口时传入的频道 ID |
draft | string | 保存的草稿 |
代码示例
engine.onDraftMessageSaved = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
string draft
)
{
}
获取草稿
获取草稿内容。
方法
int loadDraftMessage(
RCIMConversationType type,
string targetId,
string channelId
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
返回值
参数 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例x
int code = engine.loadDraftMessage(
type,
targetId,
channelId
);
回调方法
- onDraftMessageLoaded
delegate void OnDraftMessageLoadedDelegate(int code,
RCIMConversationType type,
string targetId,
string channelId,
string draft);
OnDraftMessageLoadedDelegate onDraftMessageLoaded;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMConversationType | 调用接口时传入的会话类型 |
targetId | string | 调用接口时传入的会话ID |
channelId | string | 调用接口时传入的频道 ID |
draft | string | 获取的草稿 |
代码示例
engine.onDraftMessageLoaded = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
string draft
)
{
}
删除草稿
清除某个会话的草稿信息。
方法
int clearDraftMessage(
RCIMConversationType type,
string targetId,
string channelId
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
int code = engine.clearDraftMessage(
type,
targetId,
channelId
);
回调方法
- onDraftMessageCleared
delegate void OnDraftMessageClearedDelegate(int code,
RCIMConversationType type,
string targetId,
string channelId);
OnDraftMessageClearedDelegate onDraftMessageCleared;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMConversationType | 调用接口时传入的会话类型 |
targetId | string | 调用接口时传入的会话ID |
channelId | string | 调用接口时传入的频道 ID |
代码示例
engine.onDraftMessageCleared = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId
)
{
}