xt:DaylightTime Element

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Specifies time-zoned time, representing the date and time in this time zone when time changes over to daylight time in the current year for Daylight Saving Time.

Syntax

<DaylightTime>
  <Bias>...</Bias>
  <Time>...</Time>
  <DayOrder>...</DayOrder>
  <Month>...</Month>
  <DayOfWeek>...</DayOfWeek>
</DaylightTime>

Attributes

None

Parent Element

Element

Description

xt:TimeZone Element

A time-zoned time.

Child Elements

Element

Occurrence

Description

xt:Bias Element

1

The time offset, in minutes, from the Bias value set on the parent xt:TimeZone Element to account for daylight time in this time zone.

xt:Time Element

1

The time for the "hh:mm:ss" string.

xt:DayOrder Element

1

The day number between 1 and 31.

xt:Month Element

1

The month number between 1 and 12.

xt:DayOfWeek Element

1

The day of a week.

Remarks

This element is defined by Microsoft Outlook.

Examples

XML Example of the DaylightTime Element

<?xml version="1.0" encoding="utf-8" ?>
<calendarData xmlns="http://schemas.microsoft.com/2006/09/sip/calendarData" mailboxID="bob@contoso.com">
  <WorkingHours xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
    <TimeZone>
      <Bias>480</Bias>
      <StandardTime>
        <Bias>0</Bias>
        <Time>02:00:00</Time>
        <DayOrder>1</DayOrder>
        <Month>11</Month>
        <DayOfWeek>Sunday</DayOfWeek>
      </StandardTime>
      <DaylightTime>
        <Bias>60</Bias>
        <Time>02:00:00</Time>
        <DayOrder>2</DayOrder>
        <Month>3</Month>
        <DayOfWeek>Sunday</DayOfWeek>
      </DaylightTime>
    </TimeZone>
    <WorkingPeriodArray>
      <WorkingPeriod>
        <DayOfWeek>Monday Tuesday Wednesday Thursday Friday</DayOfWeek>
        <StartTimeInMinutes>600</StartTimeInMinutes>
        <EndTimeInMinutes>1170</EndTimeInMinutes>
      </WorkingPeriod>
    </WorkingPeriodArray>
  </WorkingHours> 
</calendarData>