|
VMware vSphere Automation SDK for .NET 6.5.0
|
The File.SourceType enumerated type defines how the file content is retrieved.
More...
Public Types | |
| enum | Values { _UNKNOWN, NONE, PUSH, PULL } |
| C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
| bool | IsUnknown () |
| Values | GetEnumValue () |
Static Public Member Functions | |
| static SourceType[] | GetValues () |
| static SourceType | ValueOf (string name) |
Static Public Attributes | |
| static readonly SourceType | NONE = new SourceType("NONE", Values.NONE) |
| No source type has been requested. | |
| static readonly SourceType | PUSH = new SourceType("PUSH", Values.PUSH) |
| The client is uploading content using HTTP(S) PUT requests. | |
| static readonly SourceType | PULL = new SourceType("PULL", Values.PULL) |
| The server is pulling content from a URL. | |
The File.SourceType enumerated type defines how the file content is retrieved.
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::updatesession::FileTypes::SourceType::GetEnumValue | ( | ) | [inline] |
| static SourceType [] vmware::content::library::item::updatesession::FileTypes::SourceType::GetValues | ( | ) | [inline, static] |
| bool vmware::content::library::item::updatesession::FileTypes::SourceType::IsUnknown | ( | ) | [inline] |
| static SourceType vmware::content::library::item::updatesession::FileTypes::SourceType::ValueOf | ( | string | name | ) | [inline, static] |
readonly SourceType vmware::content::library::item::updatesession::FileTypes::SourceType::NONE = new SourceType("NONE", Values.NONE) [static] |
No source type has been requested.
readonly SourceType vmware::content::library::item::updatesession::FileTypes::SourceType::PULL = new SourceType("PULL", Values.PULL) [static] |
The server is pulling content from a URL.
The URL scheme can be http , https , file , or ds .
readonly SourceType vmware::content::library::item::updatesession::FileTypes::SourceType::PUSH = new SourceType("PUSH", Values.PUSH) [static] |
The client is uploading content using HTTP(S) PUT requests.