共用方式為


TransferContext Constructors

Definition

Overloads

TransferContext()

Initializes a new instance of the TransferContext class.

TransferContext(TransferCheckpoint)

Initializes a new instance of the TransferContext class.

TransferContext(Stream)

Initializes a new instance of the TransferContext class.

TransferContext()

Initializes a new instance of the TransferContext class.

protected TransferContext ();
Protected Sub New ()

Applies to

TransferContext(TransferCheckpoint)

Initializes a new instance of the TransferContext class.

protected TransferContext (Microsoft.Azure.Storage.DataMovement.TransferCheckpoint checkpoint);
new Microsoft.Azure.Storage.DataMovement.TransferContext : Microsoft.Azure.Storage.DataMovement.TransferCheckpoint -> Microsoft.Azure.Storage.DataMovement.TransferContext
Protected Sub New (checkpoint As TransferCheckpoint)

Parameters

checkpoint
TransferCheckpoint

An TransferCheckpoint object representing the last checkpoint from which the transfer continues on.

Applies to

TransferContext(Stream)

Initializes a new instance of the TransferContext class.

protected TransferContext (System.IO.Stream journalStream);
new Microsoft.Azure.Storage.DataMovement.TransferContext : System.IO.Stream -> Microsoft.Azure.Storage.DataMovement.TransferContext
Protected Sub New (journalStream As Stream)

Parameters

journalStream
Stream

The stream into which the transfer journal info will be written into. It can resume the previours paused transfer from its journal stream.

Applies to