xt:EndTimeInMinutes 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.

Contains the end time in minutes.

Syntax

<EndTimeInMinutes>...</EndTimeInMinutes>

Attributes

None

Tag Content

Default Value

Data Type

Description

none

xs:int

An integer representing the time when work begins, in minutes after midnight. In the example shown on this page, the value 600 in StartTimeInMinutes represents a start time of 10:00 A.M. Similarly, the value 1170 in EndTimeInMinutes represents an end time of 7:30 P.M.

Parent Element

Element

Description

xt:WorkingPeriod Element

The WorkingPeriod element.

Child Elements

None

Examples

XML Example of the EndTimeInMinutes 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>