ui:callHandlingList

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 a list for call handlers.

Syntax

<ui:callHandlingList>
  <ui:lastPhone>...</ui:lastPhone>
  <ui:lastContact>...</ui:lastContact>
</ui:callHandlingList>

Attributes

None

Parent Element

Element

Description

ui:userInformation

The userInformation options.

Child Elements

Element

Occurrence

Description

ui:lastPhone

0 or 1

The last phone handling a call.

ui:lastContact

0 or 1

The last contact handling a call.

Examples

XML Example of the callHandlingList Element

  <userInformation xmlns="http://schemas.microsoft.com/2006/09/sip/options/userInformation">
    <phones>
      <phone type="work">
        <publish>true</publish>
        <readOnly>false</readOnly>
        <displayString>7777777777</displayString>
      </phone>
      <phone type="mobile">
        <publish>true</publish>
        <readOnly>true</readOnly>
        <uri>1234567890</uri>
        <displayString>1234567890</displayString>
      </phone>
      <phone type="home">
        <publish>true</publish>
        <readOnly>true</readOnly>
        <uri>1234567890</uri>
        <displayString>1234567890</displayString>
      </phone>
      <phone type="other">
        <publish>true</publish>
        <readOnly>false</readOnly>
        <displayString>6666666666</displayString>
      </phone>
    </phones>
    <callHandlingList>
      <lastContact>
        <displayString>bob</displayString>
        <uri>sip:bob@contoso.com</uri>
      </lastContact>
    </callHandlingList>
  </userInformation>