Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.15 KB

chatmessagestore_changetracker.md

File metadata and controls

37 lines (27 loc) · 1.15 KB
-api-id -api-type -api-device-family-note
P:Windows.ApplicationModel.Chat.ChatMessageStore.ChangeTracker
winrt property
xbox

Windows.ApplicationModel.Chat.ChatMessageStore.ChangeTracker

-description

Gets a ChatMessageChangeTracker class object for the message store. A message change tracker allows an application to monitor changes to messages in the message store.

-property-value

The chat message change tracker for the store.

-remarks

An application can enable change tracking by accessing this ChatMessageChangeTracker object. The following example shows how to enable message change tracking.

// Enable message change tracking
void SetTrackingOn(ChatMessageStore store)
{
    store.ChangeTracker.Enable();
}

The chat application receives notifications of message changes in its message change event handler which is registered to the MessageChanged event.

-examples

-see-also

-capabilities

chatSystem, smsSend, chat