ITAddressTranslationInfo::get_DialableString method (tapi3if.h)

The get_DialableString method gets a string that contains a dialable number. Typically, this number is then used as the pDestAddress argument in ITAddress::CreateCall.

Syntax

HRESULT get_DialableString(
  [out] BSTR *ppDialableString
);

Parameters

[out] ppDialableString

Pointer to BSTR containing representation of dialable string.

Return value

This method can return one of these values.

Return code Description
S_OK
Method succeeded.
E_POINTER
The ppDialableString parameter is not a valid pointer.
E_OUTOFMEMORY
Insufficient memory exists to perform the operation.

Remarks

The application must use SysFreeString to free the memory allocated for the ppDialableString parameter.

Corresponds to the dwDialableStringSize and dwDialableStringOffset members of TAPI 2's LINETRANSLATEOUTPUT structure.

Requirements

Requirement Value
Target Platform Windows
Header tapi3if.h (include Tapi3.h)
Library Uuid.lib
DLL Tapi3.dll

See also

Address Object

ITAddressTranslationInfo