StreamTransferProgressArgs Constructor |
The constructor takes the number of
currently transferred bytes and the
total number of bytes to be transferred
Namespace: Aliyun.OSSAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntax public StreamTransferProgressArgs(
long incrementTransferred,
long transferred,
long total
)
Public Sub New (
incrementTransferred As Long,
transferred As Long,
total As Long
)
public:
StreamTransferProgressArgs(
long long incrementTransferred,
long long transferred,
long long total
)
new :
incrementTransferred : int64 *
transferred : int64 *
total : int64 -> StreamTransferProgressArgs
Parameters
- incrementTransferred
- Type: SystemInt64
The number of bytes transferred since last event - transferred
- Type: SystemInt64
The number of bytes transferred - total
- Type: SystemInt64
The total number of bytes to be transferred
See Also