IFileDataRetriever Interface

Represents the mechanism by which a file synchronization provider and a custom provider transfer data between each other.

Namespace: Microsoft.Synchronization.Files
Assembly: Microsoft.Synchronization.Files (in microsoft.synchronization.files.dll)

Syntax

'Declaration
Public Interface IFileDataRetriever
'Usage
Dim instance As IFileDataRetriever
public interface IFileDataRetriever
public interface class IFileDataRetriever
public interface IFileDataRetriever
public interface IFileDataRetriever

Remarks

When a custom provider is the source provider and a FileSyncProvider object is the destination provider, the source provider must return an object that implements IFileDataRetriever object in its LoadChangeData method (LoadChangeData for simple providers).

When a custom provider is the destination provider and a FileSyncProvider object is the source provider, the destination provider will receive an IFileDataRetriever object in its SaveItemChange method. The destination provider can then use the IFileDataRetriever methods to get the file data from the source replica so that it can apply the change to the destination replica. For more information, see Synchronizing File Synchronization Provider with Other Providers.

See Also

Reference

IFileDataRetriever Members
Microsoft.Synchronization.Files Namespace