Chat SDK for Unity and Windows v1.2.0
|
Public Attributes | |
string | Tid |
string | MessageId |
string | ParentId |
string | Owner |
string | Name |
int | MessageCount |
int | MembersCount |
long | CreateAt |
Message | LastMessage |
string AgoraChat.ChatThread.Tid |
Gets the message thread ID.
string AgoraChat.ChatThread.MessageId |
Gets the ID of the parent message.
string AgoraChat.ChatThread.ParentId |
Gets the group ID to which the message thread belongs.
string AgoraChat.ChatThread.Owner |
Gets the message thread creator.
This message thread creator is returned when you get the message thread details and message thread list.
string AgoraChat.ChatThread.Name |
Gets the message thread name.
int AgoraChat.ChatThread.MessageCount |
Get the number of messages in a message thread.
To get the number of messages in a message thread, you need to first call IChatThreadManager#GetThreadDetail
to get details of the message thread.
int AgoraChat.ChatThread.MembersCount |
Gets the number of members in the message thread.
To get the member count, you need to first call IChatThreadManager#GetThreadDetail
to get details of the message thread.
long AgoraChat.ChatThread.CreateAt |
Gets the Unix timestamp when the message thread is created. The unit is millisecond.
Message AgoraChat.ChatThread.LastMessage |
Get the last reply in the message thread.
To get the last reply in the message thread, you need to first call IChatThreadManager#GetThreadDetail
to get details of the message thread.