TransferProgress 结构

定义

包含数据传输操作的进度信息。

public value class TransferProgress
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
struct TransferProgress
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public struct TransferProgress
var transferProgress = {
bytesSent : /* Your value */,
totalBytesToSend : /* Your value */,
bytesRetrieved : /* Your value */,
totalBytesToRetrieve : /* Your value */
}
Public Structure TransferProgress
继承
TransferProgress
属性

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)

字段

BytesRetrieved

收到的字节数。

BytesSent

已发送的字节数。

TotalBytesToRetrieve

传输操作期间将接收的总字节数。

TotalBytesToSend

传输操作期间将发送的总字节数。

适用于

另请参阅