ShouldOverwriteCallbackAsync Delegate |
Callback invoked to tell whether to overwrite an existing destination.
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> ShouldOverwriteCallbackAsync(
Object source,
Object destination
)
Public Delegate Function ShouldOverwriteCallbackAsync (
source As Object,
destination As Object
) As Task(Of Boolean)
public delegate Task<bool>^ ShouldOverwriteCallbackAsync(
Object^ source,
Object^ destination
)
type ShouldOverwriteCallbackAsync =
delegate of
source : Object *
destination : Object -> Task<bool>
Parameters
- source
- Type: SystemObject
Instance of source used to overwrite the destination. - destination
- Type: SystemObject
Instance of destination to be overwritten.
Return Value
Type:
TaskBooleanTrue if the file should be overwritten; otherwise false.
See Also