Interface IHostedService
- Namespace
- Microsoft.Extensions.Hosting
- Assembly
- nanoFramework.Hosting.dll
Defines methods for objects that are managed by the host.
public interface IHostedService
- Extension Methods
Methods
StartAsync(CancellationToken)
Triggered when the application host is ready to start the service.
void StartAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenIndicates that the start process has been aborted.
StopAsync(CancellationToken)
Triggered when the application host is performing a graceful shutdown.
void StopAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenIndicates that the shutdown process should no longer be graceful.