6 references to NotStarted
aspire (6)
Processes\IsolatedProcess.cs (6)
118
private int _lifecycleState = (int)LifecycleState.
NotStarted
;
261
case LifecycleState.
NotStarted
:
262
if (Interlocked.CompareExchange(ref _lifecycleState, (int)LifecycleState.Disposed, (int)LifecycleState.
NotStarted
) == (int)LifecycleState.
NotStarted
)
311
var previousState = (LifecycleState)Interlocked.CompareExchange(ref _lifecycleState, (int)LifecycleState.Starting, (int)LifecycleState.
NotStarted
);
312
if (previousState != LifecycleState.
NotStarted
)