Class DefaultCoreBackend
Definition
- Namespace:
- Tizen.Applications.CoreBackend
- Assembly:
- Tizen.Applications.Common.dll
- API Level:
- 3
An abstract class to provide default event handlers for apps.
C#Copypublic abstract class DefaultCoreBackend : ICoreBackend, IDisposable
- Inheritance
-
DefaultCoreBackend
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic DefaultCoreBackend()
API Level: 3
Methods
Declaration
C#Copypublic virtual void AddEventHandler(EventType evType, Action handler)
Parameters
Type | Name | Description |
---|---|---|
EventType | evType | The type of event. |
System.Action | handler | The handler method without arguments. |
API Level: 3
Declaration
C#Copypublic virtual void AddEventHandler<TEventArgs>(EventType evType, Action<TEventArgs> handler) where TEventArgs : EventArgs
Parameters
Type | Name | Description |
---|---|---|
EventType | evType | The type of event. |
System.Action<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. |
API Level: 3
Declaration
C#Copypublic void Dispose()
API Level: 3
View Source
Dispose(Boolean)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
C#Copyprotected abstract void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
API Level: 3
Declaration
C#Copypublic abstract void Exit()
API Level: 3
Declaration
C#Copyprotected void Finalize()
Declaration
C#Copypublic virtual void Run(string[] args)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | args |
API Level: 3
Implements
System.IDisposable