This topic has not yet been rated - Rate this topic

ui:lastContact

Specifies the last contact handling a call.

<ui:lastContact>
  <ui:displayString>...</ui:displayString>
  <ui:uri>...</ui:uri>
</ui:lastContact>

Element Description

ui:callHandlingList

The list of call handling targets.

Element Occurrence Description

ui:displayString

0 or 1

The display name of the call handling target. This element is optional.

ui:uri

1

The URI of the call handling target; for example, "sip:mary@contoso.com".

XML Example of the lastContact Element

<cwaCategory name="userInformation" instance="0" version="49" publishTime="2007-10-25T22:09:53Z">
  <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> 
</cwaCategory>
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.