4 writes to _serviceState
Microsoft.Build (4)
BackEnd\Components\Logging\LoggingService.cs (4)
343
_serviceState
= LoggingServiceState.Instantiated;
910
_serviceState
= LoggingServiceState.Initialized;
936
_serviceState
= LoggingServiceState.ShuttingDown;
986
_serviceState
= LoggingServiceState.Shutdown;
7 references to _serviceState
Microsoft.Build (7)
BackEnd\Components\Logging\LoggingService.cs (7)
461
public LoggingServiceState ServiceState =>
_serviceState
;
894
Assumed.NotEqual(
_serviceState
, LoggingServiceState.Shutdown, " The object is shutdown, should not do any operations on a shutdown component");
933
Assumed.NotEqual(
_serviceState
, LoggingServiceState.Shutdown, " The object is shutdown, should not do any operations on a shutdown component");
1028
Assumed.NotEqual(
_serviceState
, LoggingServiceState.Shutdown, " The object is shutdown, should not do any operations on a shutdown component");
1117
Assumed.NotEqual(
_serviceState
, LoggingServiceState.Shutdown, " The object is shutdown, should not do any operations on a shutdown component");
1184
Assumed.NotEqual(
_serviceState
, LoggingServiceState.Shutdown, " The object is shutdown, should not do any operations on a shutdown component");
1296
if (
_serviceState
== LoggingServiceState.Shutdown)