ITDirectoryObject::get_DialableAddrs method (rend.h)

[Rendezvous IP Telephony Conferencing controls and interfaces are not available for use in Windows Vista, Windows Server 2008, and subsequent versions of the operating system. The RTC Client API provides similar functionality.]

The get_DialableAddrs method gets all dialable addresses of a given type from the directory. This method performs the same function as EnumerateDialableAddrs but is used by scripting languages such as Visual Basic.

Syntax

HRESULT get_DialableAddrs(
  [in]  long    dwAddressType,
  [out] VARIANT *pVariant
);

Parameters

[in] dwAddressType

Indicator of address type.

[out] pVariant

Pointer to a VARIANT containing an ITCollection of BSTR strings, each containing a dialable address.

Return value

This method can return one of these values.

Value Meaning
S_OK
Method succeeded.
E_POINTER
Invalid pointer.
ERROR
Method failed.

Remarks

TAPI calls the AddRef method on the ITAddress interface returned by ITDirectoryObject::get_DialableAddrs. The application must call Release on the ITAddress interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header rend.h
DLL Rend.dll

See also

ITAddress

ITDirectoryObject