次の方法で共有


TransferStatusEventArgs Class

Definition

Event Argument for a change in the Transfer Status

public class TransferStatusEventArgs : Azure.Storage.DataMovement.DataTransferEventArgs
type TransferStatusEventArgs = class
    inherit DataTransferEventArgs
Public Class TransferStatusEventArgs
Inherits DataTransferEventArgs
Inheritance

Constructors

TransferStatusEventArgs(String, DataTransferStatus, Boolean, CancellationToken)

Initializes a new instance of the TransferStatusEventArgs.

Properties

CancellationToken

Gets 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 (via something like

new CancellationTokenSource(TimeSpan.FromSeconds(10)).Token

for example) will correctly propagate.

(Inherited from SyncAsyncEventArgs)
IsRunningSynchronously

Gets a value indicating whether the event handler was invoked synchronously or asynchronously. Please see SyncAsyncEventHandler<T> for more details.

(Inherited from SyncAsyncEventArgs)
TransferId

Job ID.

(Inherited from DataTransferEventArgs)
TransferStatus

Gets the DataTransferStatus of the job.

Applies to