TransferredData Property
The contents of the last response from the server.
Syntax
[VB.NET] Public Property TransferredData As String Public Property TransferredDataB As Byte()
[C#] public string TransferredData {get; set;} public byte[] TransferredDataB {get; set;}
Remarks
This property contains the contents of the last response from the server. If the LocalFile is empty, the data is accumulated in TransferredData, and can also be received in the Transfer event. Otherwise, this property returns an empty string.
TransferredDataLimit controls the maximum amount of data accumulated in this property (by default there is no limit).
This property is not available at design time.
Default Value
""