Click or drag to resize

ContentMoverGetDestinationEntryAsync Method

Gets an entry, usually temporary, on the destination file system, corresponding to a change.

Namespace:  ShellBoost.Core.Synchronization
Assembly:  ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax
C#
protected virtual Task<StateSyncEntry> GetDestinationEntryAsync(
	SyncContext context,
	SyncJobChange jobChange,
	bool canCreate
)

Parameters

context
Type: ShellBoost.Core.SynchronizationSyncContext
A sync context.
jobChange
Type: ShellBoost.Core.SynchronizationSyncJobChange
The job change instance.
canCreate
Type: SystemBoolean
A value that indicates whether the entry can be created if it does not yet exists on the destination file system.

Return Value

Type: TaskStateSyncEntry
An instance of the StateSyncEntry type or null.
Exceptions
ExceptionCondition
ArgumentNullException context or jobChange is null.
See Also