|
VMware vSphere Automation SDK for .NET 6.5.0
|
The Service.State enumerated type defines valid Run State for services.
More...
Public Types | |
| enum | Values { _UNKNOWN, STARTING, STOPPING, STARTED, STOPPED } |
| C# enum whose values can be used in switch statements. More... | |
Public Member Functions | |
| bool | IsUnknown () |
| Values | GetEnumValue () |
Static Public Member Functions | |
| static State[] | GetValues () |
| static State | ValueOf (string name) |
Static Public Attributes | |
| static readonly State | STARTING = new State("STARTING", Values.STARTING) |
| Service Run State is Starting, it is still not functional. | |
| static readonly State | STOPPING = new State("STOPPING", Values.STOPPING) |
| Service Run State is Stopping, it is not functional. | |
| static readonly State | STARTED = new State("STARTED", Values.STARTED) |
| Service Run State is Started, it is fully functional. | |
| static readonly State | STOPPED = new State("STOPPED", Values.STOPPED) |
| Service Run State is Stopped. | |
The Service.State enumerated type defines valid Run State for services.
C# enum whose values can be used in switch statements.
Ordinals have no semantic meaning (your code should not rely on them).
| Values vmware::appliance::vmon::ServiceTypes::State::GetEnumValue | ( | ) | [inline] |
| static State [] vmware::appliance::vmon::ServiceTypes::State::GetValues | ( | ) | [inline, static] |
| bool vmware::appliance::vmon::ServiceTypes::State::IsUnknown | ( | ) | [inline] |
| static State vmware::appliance::vmon::ServiceTypes::State::ValueOf | ( | string | name | ) | [inline, static] |
readonly State vmware::appliance::vmon::ServiceTypes::State::STARTED = new State("STARTED", Values.STARTED) [static] |
readonly State vmware::appliance::vmon::ServiceTypes::State::STARTING = new State("STARTING", Values.STARTING) [static] |
readonly State vmware::appliance::vmon::ServiceTypes::State::STOPPED = new State("STOPPED", Values.STOPPED) [static] |
readonly State vmware::appliance::vmon::ServiceTypes::State::STOPPING = new State("STOPPING", Values.STOPPING) [static] |