se:calendar

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 calendar presence capabilities of a service to send and receive calendar data on an endpoint.

Syntax

<calendar uri="..."
          preferredEndpoint="..."
          preferred="..."
          render="..." 
          capture="..." 
          publish="..." 
          version="..." 
          deviceAvailability="..." />

Attributes

Attribute

Data Type

Description

uri

xs:anyURI

Specifies URI of the user whose presence is handled by the service. Optional.

render

xs:boolean

Specifies whether the service can display this calendar information (true) or not (false). This is optional and the default value is false.

capture

xs:boolean

Specifies whether the service can receive the calendar information of the given user (true) or not (false). This is optional and the default value is false.

publish

xs:boolean

Specifies whether the service can publish the calendar information of the given user to the presence (true) or not (false). This is optional and the default value is false.

version

xs:unsignedInt

Specifies the version of this calendar information. This is optional with the default value of 0.

deviceAvailability

xs:unsignedInt

Specifies the availability (range) of the device. This is optional.

preferred

xs:boolean

Specifies whether the service is preferred (true) or not (false). This is optional and the default value is false.

preferredEndpointId

xs:string

Specifies the ID of the preferred endpoint. Optional.

Tag Content

None

Parent Element

Element

Description

se:capabilities

The presence capabilities of the service.

Child Elements

None

Remarks

Other attributes are permitted on this element.

Examples

Description

The following XML fragment specifies that the service can display the calendar information of alice@contoso.com and publishes the data to the user presence.

Code

<se:service xmlns:se="http://schemas.microsoft.com/2006/09/sip/service">
  <se:capabilities>
    <se:calendar uri="alice@contoso.com" render="true" publish="true" />
  </se:capabilities>
</se:service>

See Also

Concepts

de:calendar