Interface ISyncer<TLeft, TRight>
Denotes an object that can synchronize properties
Namespace: NMF.Synchronizations
Assembly: NMF.Synchronizations.dll
Syntax
public interface ISyncer<TLeft, TRight>
Type Parameters
Name | Description |
---|---|
TLeft | The left type of elements |
TRight | The right type of elements |
Methods
| Edit this page View SourceSync(TLeft, TRight, ISynchronizationContext)
Synchronizes the given instances
Declaration
IDisposable Sync(TLeft left, TRight right, ISynchronizationContext context)
Parameters
Type | Name | Description |
---|---|---|
TLeft | left | The left element |
TRight | right | The right element |
ISynchronizationContext | context | The context in which to synchronize |
Returns
Type | Description |
---|---|
IDisposable | A disposable object that can be used to terminate the synchronization |