Class DataTransferEventArgs
Used for tracking progess of file uploads/downloads to and from a project server
Inheritance
Object
DataTransferEventArgs
Namespace: Sdl.ProjectAutomation.Core
Assembly: Sdl.ProjectAutomation.Core.dll
Syntax
public class DataTransferEventArgs : CancelEventArgs
Constructors
DataTransferEventArgs()
Used for tracking progess of file uploads/downloads to and from a project server
Declaration
public DataTransferEventArgs()
Properties
BytesTransferred
Used for tracking progess of file uploads/downloads to and from a project server
Declaration
public long BytesTransferred { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
FileBytesTransferred
Number of bytes currently transfered
Declaration
public long FileBytesTransferred { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
Filename
File being uploaded/downloaded
Declaration
public string Filename { get; set; }
Property Value
Type | Description |
---|---|
String |
FileTotalBytes
Total number of bytes in the file
Declaration
public long FileTotalBytes { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
TotalBytes
Used for tracking progess of file uploads/downloads to and from a project server
Declaration
public long TotalBytes { get; set; }
Property Value
Type | Description |
---|---|
Int64 |