Enum ProcessRunExitCodeState
Represents various outcome states for process execution operations within the service. This enum is designed to be flexible and applicable to a range of process-related methods, providing a standardized way to communicate success, failure, and other states across different types of process executions.
Namespace: Coree.NETStandard.Services.ProcessManagement
Assembly: Coree.NETStandard.dll
Syntax
[Flags]
public enum ProcessRunExitCodeState
Fields
Name | Description |
---|---|
IsCanceledSet | Indicates the operation was canceled, either through user action or a timeout. This state reflects an intentional interruption of the process before completion. |
IsFailedStart | Indicates the process failed to start, which could result from various issues such as executable not found, insufficient permissions, or invalid arguments. |
IsValid | Indicates a valid exit code has been set, suggesting the process has concluded and an outcome is available for evaluation. This state is intended to signify the end of an operation, whether successful or not. |
IsValidErrorCode | Indicates the process ran but completed with an error, typically represented by a non-zero exit code. This state signifies an unsuccessful execution according to the process's own criteria. |
IsValidSuccess | Indicates a successful execution where the process completed as expected without any errors, typically represented by an exit code of 0. |
None | The default state, indicating no specific outcome has been determined. This state is used before an operation is performed or when an operation's outcome does not fit any other defined state. |