ITimeZoneRule Interface

Provides access to members that control the Time Zone Rule.

Description

ITimeZoneRule provides the detailed time zone and daylight savings time rules for a specific year. It includes the time difference between this time zone and UTC, the amount of shift during daylight savings time, the start date of daylight savings time, and the end date of daylight savings time.

Members

Name Description
Read/write property BiasFromUTC The time zone bias from UTC in minutes. LocalTime = UtcTime + BiasFromUTC.
Read/write property DaylightTimeBias The bias to be used during daylight time. This bias is relative to the time zone's BiasFromUTC.
Read/write property DaylightTimeTransitionTime Date for transition to daylight time.
Read/write property StandardTimeBias The bias to be used during Standard time. This bias is relative to the time zone's BiasFromUTC.
Read/write property StandardTimeTransitionTime Date for transition to standard time.
Read/write property Year The year this rule is in effect.

ITimeZoneRule.BiasFromUTC Property

The time zone bias from UTC in minutes. LocalTime = UtcTime + BiasFromUTC.

Public Property BiasFromUTC As Integer
public int BiasFromUTC {get; set;}

ITimeZoneRule.DaylightTimeBias Property

The bias to be used during daylight time. This bias is relative to the time zone's BiasFromUTC.

Public Property DaylightTimeBias As Integer
public int DaylightTimeBias {get; set;}

ITimeZoneRule.DaylightTimeTransitionTime Property

Date for transition to daylight time.

Public Property DaylightTimeTransitionTime As TimeZoneTransitionTime
public TimeZoneTransitionTime DaylightTimeTransitionTime {get; set;}

ITimeZoneRule.StandardTimeBias Property

The bias to be used during Standard time. This bias is relative to the time zone's BiasFromUTC.

Public Property StandardTimeBias As Integer
public int StandardTimeBias {get; set;}

ITimeZoneRule.StandardTimeTransitionTime Property

Date for transition to standard time.

Public Property StandardTimeTransitionTime As TimeZoneTransitionTime
public TimeZoneTransitionTime StandardTimeTransitionTime {get; set;}

ITimeZoneRule.Year Property

The year this rule is in effect.

Public Property Year As Integer
public int Year {get; set;}

Classes that implement ITimeZoneRule

Classes Description
TimeZoneRule An object that represents a time zone dynamic adjustments rule.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.