ChatMessageChangeTracker.Enable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enables change tracking for the messages in the message store.
public:
virtual void Enable() = Enable;
void Enable();
public void Enable();
function enable()
Public Sub Enable ()
Windows requirements
App capabilities |
chat
blockedChatMessages
chatSystem
smsSend
|
Remarks
Change tracking for messages in the message store is enabled from the ChangeTracker property of the ChatMessageStore object. This is accomplished as shown in the following example:
void TurnOnChangeTracking(ChatMessageStore messageStore)
{
messageStore.ChangeTracker.Enable();
}