你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DataTransferEventArgs Class

Definition

Event Arguments for any Storage Transfer Event Handler.

public abstract class DataTransferEventArgs : Azure.SyncAsyncEventArgs
type DataTransferEventArgs = class
    inherit SyncAsyncEventArgs
Public MustInherit Class DataTransferEventArgs
Inherits SyncAsyncEventArgs
Inheritance
DataTransferEventArgs
Derived

Constructors

DataTransferEventArgs(String, Boolean, CancellationToken)

Initializes a new instance of the DataTransferEventArgs.

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.

Applies to