Platform SDK: Exchange Server

RECIPIENTINFO

The RECIPIENTINFO structure contains the information associated with each user. This structure is filled by the calling code and passed to the proxy generation DLL for read-only use. Note that all of the strings in this structure are Unicode strings.

Quick Info

Header file: PROXYINF.H

typedef struct
{
  LPWSTR  pszCommonName;
  LPWSTR  pszFirstName;
  LPWSTR  pszLastName;
  LPWSTR  pszDisplayName;
  LPWSTR  pszInitials;
}  RECIPIENTINFO, * PRECIPIENTINFO;
 

Members

pszCommonName
The mailbox name of the recipient.
pszFirstName
The first name of the recipient.
pszLastName
The last name of the recipient.
pszDisplayName
The name of the recipient, as displayed.
pszInitials
The initials of the recipient.

Remarks

Use the RECIPIENTINFO structure with a site proxy address to generate a site-unique recipient proxy.

For additional information on this structure, see Creating a Proxy Address.

See Also

RcUpdateProxy