DataTransferEventArgs(String, Boolean, CancellationToken) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DataTransferEventArgs.
protected DataTransferEventArgs (string transferId, bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken);
new Azure.Storage.DataMovement.DataTransferEventArgs : string * bool * System.Threading.CancellationToken -> Azure.Storage.DataMovement.DataTransferEventArgs
Protected Sub New (transferId As String, isRunningSynchronously As Boolean, cancellationToken As CancellationToken)
Parameters
- transferId
- String
The transfer ID.
- isRunningSynchronously
- Boolean
A value indicating whether the event handler was invoked synchronously or asynchronously. Please see SyncAsyncEventHandler<T> for more details.
- cancellationToken
- CancellationToken
A cancellation token related to the original operation that raised the event. It's important for your handler to pass this token along to any asynchronous or long-running synchronous operations that take a token so cancellation will correctly propagate. The default value is None.
Exceptions
Thrown if transferId
is empty or null.
Applies to
Azure SDK for .NET