ui:uri

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 the URI of the phone.

Syntax

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

Attributes

Attribute Data Type Description

xmlns

url

Namespace to which this element belongs.

Parent Element

Element Description

ui:phone

The phone element.

Child Elements

None

Remarks

The URI of a phone is the phone number.

Examples

Description

The following XML fragment shows how to configure the userInformation options.

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>