Searches Exchange users and Contacts for the specified name.

Namespace:  Rebex.Net
Assembly:  Rebex.Ews (in Rebex.Ews.dll)

Syntax

Visual Basic
Public Function ResolveNames ( _
	name As String _
) As IList(Of EwsResolvedName)
C#
public IList<EwsResolvedName> ResolveNames(
	string name
)

Parameters

name
Type: System..::..String
Name to be resolved (part of the User or Contact name).

Return Value

List of EwsResolvedName objects, which contain information about users and contacts found.

Remarks

The method searches in Name field of Exchange users and Contacts only. It doesn't search in Email address field, so requests like ResolveNames("@domain") find nothing typically.

Examples

ResolveNames("test") finds:
  • - users like "Joe Tester"
  • - contacts like "Joe Tester 'joe@intranet.org'"

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also