TransferProgress 構造体
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
データ転送操作の進行状況情報が含まれます。
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 |
転送操作中に送信される合計バイト数。 |