Class TimeZoneChangedEventArgs

Definition

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

The class for the argument of the TimeZoneChanged EventHandler.

C#
Copy
public class TimeZoneChangedEventArgs : EventArgs
Inheritance
TimeZoneChangedEventArgs

Constructors

View Source

TimeZoneChangedEventArgs(String, String)

Initializes TimeZoneChangedEventArgs class

Declaration
C#
Copy
public TimeZoneChangedEventArgs(string timeZone, string timeZoneId)
Parameters
Type Name Description
String timeZone

The information of the TimeZone

String timeZoneId

The information of the TimeZone ID

API Level: 11

Properties

View Source

TimeZone

The property to get the information of the TimeZone.

Declaration
C#
Copy
public string TimeZone { get; }
Property Value
Type Description
String

The time zone. (e.g. "+9:00")

API Level: 11
View Source

TimeZoneId

The property to get the information of the TimeZone ID.

Declaration
C#
Copy
public string TimeZoneId { get; }
Property Value
Type Description
String

The time zone ID. (e.g. "Asia/Seoul")

API Level: 11

Extension Methods