ISupportLastWriteTime Interface

When overridden, retrieves the date and time that an item or change unit was most recently changed.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

public interface ISupportLastWriteTime

The ISupportLastWriteTime type exposes the following members.

  NameDescription
Public methodGetChangeUnitChangeTimeWhen overridden in a derived class, gets the date and time that the specified change unit was last changed.
Public methodGetItemChangeTimeWhen overridden in a derived class, gets the date and time that the specified item was last changed.
Top

This interface is typically implemented by a provider.

This interface can be used by a synchronization application to resolve conflicts according to when changes were made, such as a "last writer wins" conflict resolution. When the application is notified of a conflict, the application retrieves the time the change was made on the source replica and the time the change was made on the destination replica. The application compares the two times, and applies the change that was made last.

Show: