Interface ICoreBackend
Definition
- Namespace:
- Tizen.Applications.Core
Backend
- Assembly:
- Tizen.Applications.Common.dll
An interface that represents the backend lifecycles.
C#
Copy
public interface ICoreBackend : IDisposable
Methods
Declaration
C#
Copy
void AddEventHandler(EventType evType, Action handler)
Parameters
Type | Name | Description |
---|---|---|
Event |
evType | The type of event. |
System. |
handler | The handler method without arguments. |
Declaration
C#
Copy
void AddEventHandler<TEventArgs>(EventType evType, Action<TEventArgs> handler) where TEventArgs : EventArgs
Parameters
Type | Name | Description |
---|---|---|
Event |
evType | The type of event. |
System.Action<T><TEventArgs> | handler | The handler method with a TEventArgs type argument. |
Type Parameters
Name | Description |
---|---|
TEventArgs | The EventArgs type used in arguments of the handler method. |
Declaration
C#
Copy
void Exit()
Declaration
C#
Copy
void Run(string[] args)
Parameters
Type | Name | Description |
---|---|---|
string[] | args |