2 instantiations of ServiceState
Microsoft.Extensions.Hosting.Systemd (2)
ServiceState.cs (2)
19public static readonly ServiceState Ready = new ServiceState("READY=1"); 24public 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> 15void Notify(ServiceState state);
ServiceState.cs (2)
19public static readonly ServiceState Ready = new ServiceState("READY=1"); 24public static readonly ServiceState Stopping = new ServiceState("STOPPING=1");
SystemdLifetime.cs (2)
98SystemdNotifier.Notify(ServiceState.Ready); 105SystemdNotifier.Notify(ServiceState.Stopping);
SystemdNotifier.cs (1)
37public void Notify(ServiceState state)