Interface IApplicationService
Defines methods that application extension services must implement in order to enable an application to start and stop the service.
Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
public interface IApplicationService
Methods
| Improve this Doc View SourceStartService(ApplicationServiceContext)
Called by an application in order to initialize the application extension service.
Declaration
void StartService(ApplicationServiceContext context)
Parameters
Type | Name | Description |
---|---|---|
ApplicationServiceContext | context | Provides information about the application state. |
StopService()
Called by an application in order to stop the application extension service.
Declaration
void StopService()