Click or drag to resize

ShouldTransferCallbackAsync Delegate

Callback invoked to tell whether a transfer should be done.

Namespace:  Microsoft.Azure.Storage.DataMovement
Assembly:  Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
public delegate Task<bool> ShouldTransferCallbackAsync(
	Object source,
	Object destination
)

Parameters

source
Type: SystemObject
Instance of the transfer source.
destination
Type: SystemObject
Instance of the transfer destination.

Return Value

Type: TaskBoolean
True if the transfer should be done; otherwise false.
See Also