This topic has not yet been rated - Rate this topic

ui:displayString

Specifies the display string of a phone number as defined in the userInformation (ui) namespace.

<ui:displayString xmlns:ui="http://schemas.microsoft.com/2006/09/sip/options/userInformation">...</ui:displayString>

AttributeData TypeDescription

xmlns

url

Specifies the namespace this element belongs to. The must be
"http://schemas.microsoft.com/2006/09/sip/options/userInformation"

ElementDescription

ui:phone

Specifies a telephone number as part the userInformation options.

This element is also defined for the cc:phone element in the contactCard (cc) namespace.

Description

The following XML fragment specifies the user information including a list of phone numbers.

Code

<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>5555555555</displayString>
    </phone>
  </phones>
  <callHandlingList />
</userInformation>
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.