Class EventType

Definition

Namespace:
Tizen.Applications.CoreBackend
Assembly:
Tizen.Applications.Common.dll
API Level:
3

This class represents the type of event for backends. This class can be converted from the string type.

C#
Copy
public class EventType
Inheritance
EventType
Derived

Constructors

View Source

EventType(String)

Initializes the EventType class.

Declaration
C#
Copy
public EventType(string name)
Parameters
Type Name Description
System.String name

The name of event type.

API Level: 3

Fields

View Source

AppControlReceived

Pre-defined event type "AppControlReceived".

Declaration
C#
Copy
public static readonly EventType AppControlReceived
Field Value
Type Description
EventType
API Level: 3
View Source

Created

Pre-defined event type "Created".

Declaration
C#
Copy
public static readonly EventType Created
Field Value
Type Description
EventType
API Level: 3
View Source

DeviceOrientationChanged

Pre-defined event type "DeviceOrientationChanged".

Declaration
C#
Copy
public static readonly EventType DeviceOrientationChanged
Field Value
Type Description
EventType
API Level: 3
View Source

LocaleChanged

Pre-defined event type "LocaleChanged".

Declaration
C#
Copy
public static readonly EventType LocaleChanged
Field Value
Type Description
EventType
API Level: 3
View Source

LowBattery

Pre-defined event type "LowBattery".

Declaration
C#
Copy
public static readonly EventType LowBattery
Field Value
Type Description
EventType
API Level: 3
View Source

LowMemory

Pre-defined event type "LowMemory".

Declaration
C#
Copy
public static readonly EventType LowMemory
Field Value
Type Description
EventType
API Level: 3
View Source

Paused

Pre-defined event type "Paused".

Declaration
C#
Copy
public static readonly EventType Paused
Field Value
Type Description
EventType
API Level: 3
View Source

PreCreated

Pre-defined event type "PreCreated".

Declaration
C#
Copy
public static readonly EventType PreCreated
Field Value
Type Description
EventType
API Level: 3
View Source

RegionFormatChanged

Pre-defined event type "RegionFormatChanged".

Declaration
C#
Copy
public static readonly EventType RegionFormatChanged
Field Value
Type Description
EventType
API Level: 3
View Source

Resumed

Pre-defined event type "Resumed".

Declaration
C#
Copy
public static readonly EventType Resumed
Field Value
Type Description
EventType
API Level: 3
View Source

Terminated

Pre-defined event type "Terminated".

Declaration
C#
Copy
public static readonly EventType Terminated
Field Value
Type Description
EventType
API Level: 3

Methods

View Source

Equals(Object)

Determines whether this instance and a specified object.

Declaration
C#
Copy
public override bool Equals(object obj)
Parameters
Type Name Description
Object obj
Returns
Type Description
Boolean
Overrides
API Level: 3
View Source

GetHashCode()

Returns the hash code for event type string.

Declaration
C#
Copy
public override int GetHashCode()
Returns
Type Description
System.Int32
Overrides
API Level: 3
View Source

ToString()

Returns the name of event type.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
API Level: 3

Operators

View Source

Implicit(String to EventType)

Converts a string to EventType instance.

Declaration
C#
Copy
public static implicit operator EventType(string value)
Parameters
Type Name Description
System.String value
Returns
Type Description
EventType
API Level: 3