UploadProgressChangedEventArgs.TotalBytesToReceive 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 WebClient 資料上傳作業中的位元組總數。
public:
property long TotalBytesToReceive { long get(); };
public long TotalBytesToReceive { get; }
member this.TotalBytesToReceive : int64
Public ReadOnly Property TotalBytesToReceive As Long
屬性值
Int64 值,表示將會收到的位元組數。
備註
若要判斷已收到的位元元組數目,請使用 BytesReceived 屬性。
將數據上傳至伺服器可能會導致從伺服器下載。 例如,假設您的應用程式將POST要求上傳至 Web 伺服器。 產生的下載將會更新 BytesReceived 和 TotalBytesToReceive。
若要判斷已發生的傳輸百分比,請使用 ProgressPercentage 屬性。 上傳完成時, ProgressPercentage 將會是50%。 下載完成時, ProgressPercentage 將會是 100%。