Class BackgroundTransferInfo
Information about a background transfer.
Inherited Members
Namespace: FubarDev.FtpServer.BackgroundTransfer
Assembly: FubarDev.FtpServer.Abstractions.dll
Syntax
public sealed class BackgroundTransferInfo
Constructors
| Improve this Doc View SourceBackgroundTransferInfo(BackgroundTransferStatus, String, Nullable<Int64>)
Initializes a new instance of the BackgroundTransferInfo class.
Declaration
public BackgroundTransferInfo(BackgroundTransferStatus status, string fileName, long? transferred)
Parameters
Type | Name | Description |
---|---|---|
BackgroundTransferStatus | status | The status of the transfer. |
String | fileName | The full target file name. |
Nullable<Int64> | transferred | The number of transferred bytes. |
Properties
| Improve this Doc View SourceFileName
Gets the target file name (with path).
Declaration
public string FileName { get; }
Property Value
Type | Description |
---|---|
String |
Status
Gets the status of the transfer.
Declaration
public BackgroundTransferStatus Status { get; }
Property Value
Type | Description |
---|---|
BackgroundTransferStatus |
Transferred
Gets the number of transferred bytes.
Declaration
public long? Transferred { get; }
Property Value
Type | Description |
---|---|
Nullable<Int64> |