RunspacePoolState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines various states of a runspace pool.
public enum class RunspacePoolState
public enum RunspacePoolState
type RunspacePoolState =
Public Enum RunspacePoolState
- Inheritance
-
RunspacePoolState
Fields
BeforeOpen | 0 | Beginning state upon creation. |
Broken | 5 | The RunspacePool has been disconnected abnormally. |
Closed | 3 | The RunspacePool is closed. |
Closing | 4 | The RunspacePool is being closed. |
Connecting | 8 | The RunspacePool is being connected. |
Disconnected | 7 | The RunspacePool has been disconnected. |
Disconnecting | 6 | The RunspacePool is being disconnected. |
Opened | 2 | The RunspacePool is created and valid. |
Opening | 1 | A RunspacePool is being created. |