Class FileTransferResult
Represents the result of a file transfer.
Inheritance
System.Object
FileTransferResult
Namespace: DNVGL.One.Compute.Core.DataTransfer
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public class FileTransferResult : object
Constructors
View SourceFileTransferResult(String, String, WorkStatus)
Initializes a new instance of the FileTransferResult class.
Declaration
public FileTransferResult(string sourceFile, string message, WorkStatus transferStatus)
Parameters
Type | Name | Description |
---|---|---|
System.String | sourceFile | The source file. |
System.String | message | The message. |
WorkStatus | transferStatus | The transfer status. |
Properties
View SourceMessage
Gets the message.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String | The message. |
SourceFile
Gets the source file.
Declaration
public string SourceFile { get; }
Property Value
Type | Description |
---|---|
System.String | The source file. |
TransferStatus
Gets the transfer status.
Declaration
public WorkStatus TransferStatus { get; }
Property Value
Type | Description |
---|---|
WorkStatus | The transfer status. |