|
VMware vSphere Automation SDK for .NET 6.5.0
|
The TransferStatus enumerated type defines the transfer state of a file.
More...
Public Types | |
| enum | Values { _UNKNOWN, WAITING_FOR_TRANSFER, TRANSFERRING, READY, VALIDATING, ERROR } |
| C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
| bool | IsUnknown () |
| Values | GetEnumValue () |
Static Public Member Functions | |
| static TransferStatus[] | GetValues () |
| static TransferStatus | ValueOf (string name) |
Static Public Attributes | |
| static readonly TransferStatus | WAITING_FOR_TRANSFER = new TransferStatus("WAITING_FOR_TRANSFER", Values.WAITING_FOR_TRANSFER) |
| Indicates that a file has been defined for a library item and its content needs to be uploaded. | |
| static readonly TransferStatus | TRANSFERRING = new TransferStatus("TRANSFERRING", Values.TRANSFERRING) |
| Indicates that data is being transferred to the file. | |
| static readonly TransferStatus | READY = new TransferStatus("READY", Values.READY) |
| Indicates that the file has been fully transferred and is ready to be used. | |
| static readonly TransferStatus | VALIDATING = new TransferStatus("VALIDATING", Values.VALIDATING) |
| Indicates that the file is being validated (checksum, type adapters). | |
| static readonly TransferStatus | ERROR = new TransferStatus("ERROR", Values.ERROR) |
| Indicates that there was an error transferring or validating the file. | |
The TransferStatus enumerated type defines the transfer state of a file.
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
| Values vmware::content::library::item::TransferStatus::GetEnumValue | ( | ) | [inline] |
| static TransferStatus [] vmware::content::library::item::TransferStatus::GetValues | ( | ) | [inline, static] |
| bool vmware::content::library::item::TransferStatus::IsUnknown | ( | ) | [inline] |
| static TransferStatus vmware::content::library::item::TransferStatus::ValueOf | ( | string | name | ) | [inline, static] |
readonly TransferStatus vmware::content::library::item::TransferStatus::ERROR = new TransferStatus("ERROR", Values.ERROR) [static] |
Indicates that there was an error transferring or validating the file.
readonly TransferStatus vmware::content::library::item::TransferStatus::READY = new TransferStatus("READY", Values.READY) [static] |
Indicates that the file has been fully transferred and is ready to be used.
readonly TransferStatus vmware::content::library::item::TransferStatus::TRANSFERRING = new TransferStatus("TRANSFERRING", Values.TRANSFERRING) [static] |
Indicates that data is being transferred to the file.
readonly TransferStatus vmware::content::library::item::TransferStatus::VALIDATING = new TransferStatus("VALIDATING", Values.VALIDATING) [static] |
Indicates that the file is being validated (checksum, type adapters).
readonly TransferStatus vmware::content::library::item::TransferStatus::WAITING_FOR_TRANSFER = new TransferStatus("WAITING_FOR_TRANSFER", Values.WAITING_FOR_TRANSFER) [static] |
Indicates that a file has been defined for a library item and its content needs to be uploaded.