Member since Feb 2003 ·
2700 posts · Location: Germany
Group memberships: Administrators, Members
XEP-0085: Chat State Notifications is what you are looking for.
To send a composing state with your message (user is typing) use the following code:
var msg =
new Message
() {To =
"user@server.com", Type = MessageType.
chat};
msg.Chatstate = Matrix.Xmpp.Chatstates.Chatstate.composing;
Alex
Alexander Gnauck
AG-Software