TransferStatus Constructors
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.
Overloads
TransferStatus() |
Initializes a new instance of the TransferStatus class. |
TransferStatus(Int64, Int64, Int64, Int64) |
Initializes a new instance of the TransferStatus class. |
TransferStatus()
Initializes a new instance of the TransferStatus class.
public TransferStatus ();
Public Sub New ()
Applies to
TransferStatus(Int64, Int64, Int64, Int64)
Initializes a new instance of the TransferStatus class.
public TransferStatus (long bytesTransferred, long numberOfFilesTransferred, long numberOfFilesSkipped, long numberOfFilesFailed);
new Microsoft.Azure.Storage.DataMovement.TransferStatus : int64 * int64 * int64 * int64 -> Microsoft.Azure.Storage.DataMovement.TransferStatus
Public Sub New (bytesTransferred As Long, numberOfFilesTransferred As Long, numberOfFilesSkipped As Long, numberOfFilesFailed As Long)
Parameters
- bytesTransferred
- Int64
Number of bytes that have been transferred.
- numberOfFilesTransferred
- Int64
Number of files that have been transferred.
- numberOfFilesSkipped
- Int64
Number of files that are skipped to be transferred.
- numberOfFilesFailed
- Int64
Number of files that are failed to be transferred.
Applies to
Azure SDK for .NET