OverwriteCallback Delegate

 

Callback invoked to tell whether to overwrite an existing destination

Namespace:   Microsoft.WindowsAzure.Storage.DataMovement
Assembly:  Microsoft.WindowsAzure.Storage.DataMovement (in Microsoft.WindowsAzure.Storage.DataMovement.dll)

Syntax

public delegate bool OverwriteCallback(
    string sourcePath,
    string destinationPath
)

Parameters

  • sourcePath
    Type: System.String

    Path of the source file used to overwrite the destination.

  • destinationPath
    Type: System.String

    Path of the file to be overwritten.

Return Value

Type: System.Boolean

True if the file should be overwritten; otherwise false.

See Also

Microsoft.WindowsAzure.Storage.DataMovement Namespace

Return to top