2 instantiations of ServiceState
Microsoft.Extensions.Hosting.Systemd (2)
ServiceState.cs (2)
19
public static readonly ServiceState Ready = new
ServiceState
("READY=1");
24
public static readonly ServiceState Stopping = new
ServiceState
("STOPPING=1");
7 references to ServiceState
Microsoft.Extensions.Hosting.Systemd (7)
ISystemdNotifier.cs (2)
14
/// <param name="state">The <see cref="
ServiceState
"/> to notify.</param>
15
void Notify(
ServiceState
state);
ServiceState.cs (2)
19
public static readonly
ServiceState
Ready = new ServiceState("READY=1");
24
public static readonly
ServiceState
Stopping = new ServiceState("STOPPING=1");
SystemdLifetime.cs (2)
98
SystemdNotifier.Notify(
ServiceState
.Ready);
105
SystemdNotifier.Notify(
ServiceState
.Stopping);
SystemdNotifier.cs (1)
37
public void Notify(
ServiceState
state)