Interface ICoreTask

Definition

Namespace:
Tizen.Applications
Assembly:
Tizen.Applications.Common.dll
API Level:
10

Represents the CoreTask interface.

C#
Copy
public interface ICoreTask

Methods

View Source

OnAppControlReceived(AppControlReceivedEventArgs)

This method is to handle behavior when the task of the application receives the appcontrol message.

Declaration
C#
Copy
void OnAppControlReceived(AppControlReceivedEventArgs e)
Parameters
Type Name Description
AppControlReceivedEventArgs e

The received app control event argument.

API Level: 10
View Source

OnCreate()

This method is to handle behavior when the task of the application is created.

Declaration
C#
Copy
void OnCreate()
API Level: 10
View Source

OnDeviceOrientationChanged(DeviceOrientationEventArgs)

This method is to handle behavior when the device orientation is changed.

Declaration
C#
Copy
void OnDeviceOrientationChanged(DeviceOrientationEventArgs e)
Parameters
Type Name Description
DeviceOrientationEventArgs e

The device orientation changed event argument.

API Level: 10
View Source

OnLocaleChanged(LocaleChangedEventArgs)

This method is to handle behavior when the system language is changed.

Declaration
C#
Copy
void OnLocaleChanged(LocaleChangedEventArgs e)
Parameters
Type Name Description
LocaleChangedEventArgs e

The locale changed event argument.

API Level: 10
View Source

OnLowBattery(LowBatteryEventArgs)

This method is to handle behavior when the system battery is low.

Declaration
C#
Copy
void OnLowBattery(LowBatteryEventArgs e)
Parameters
Type Name Description
LowBatteryEventArgs e

The low battery event argument.

API Level: 10
View Source

OnLowMemory(LowMemoryEventArgs)

This method is to handle behavior when the system memory is low.

Declaration
C#
Copy
void OnLowMemory(LowMemoryEventArgs e)
Parameters
Type Name Description
LowMemoryEventArgs e

The low memory event argument.

API Level: 10
View Source

OnRegionFormatChanged(RegionFormatChangedEventArgs)

This method is to handle behavior when the region format is changed.

Declaration
C#
Copy
void OnRegionFormatChanged(RegionFormatChangedEventArgs e)
Parameters
Type Name Description
RegionFormatChangedEventArgs e

The region format changed event argument.

API Level: 10
View Source

OnTerminate()

This method is to handle behavior when the task of the application is terminated.

Declaration
C#
Copy
void OnTerminate()
API Level: 10
View Source

OnUIEvent(UIEventArgs)

This method is to handle behavior when the application is resumed or paused.

Declaration
C#
Copy
void OnUIEvent(UIEventArgs e)
Parameters
Type Name Description
UIEventArgs e

The UI event argument.

API Level: 10

Extension Methods