ChatConversation.RemoteParticipantComposingChanged Event

Definition

Occurs when the remote user has started or finished typing.

// Register
event_token RemoteParticipantComposingChanged(TypedEventHandler<ChatConversation, RemoteParticipantComposingChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void RemoteParticipantComposingChanged(event_token const* cookie) const;

// Revoke with event_revoker
ChatConversation::RemoteParticipantComposingChanged_revoker RemoteParticipantComposingChanged(auto_revoke_t, TypedEventHandler<ChatConversation, RemoteParticipantComposingChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<ChatConversation,RemoteParticipantComposingChangedEventArgs> RemoteParticipantComposingChanged;
function onRemoteParticipantComposingChanged(eventArgs) { /* Your code */ }
chatConversation.addEventListener("remoteparticipantcomposingchanged", onRemoteParticipantComposingChanged);
chatConversation.removeEventListener("remoteparticipantcomposingchanged", onRemoteParticipantComposingChanged);
- or -
chatConversation.onremoteparticipantcomposingchanged = onRemoteParticipantComposingChanged;
Public Custom Event RemoteParticipantComposingChanged As TypedEventHandler(Of ChatConversation, RemoteParticipantComposingChangedEventArgs) 

Event Type

Windows requirements

App capabilities
chat chatSystem smsSend

Applies to