ResolveNameSimple method

Future<NameResolutionCollection> ResolveNameSimple(
  1. String nameToResolve
)
Finds contacts in the user's Contacts folder and the Global Address List (in that order) that have names that match the one passed as a parameter. Calling this method results in a call to EWS. The name to resolve.

Implementation

Future<NameResolutionCollection> ResolveNameSimple(String nameToResolve) {
  return this.ResolveNameWithSearchScopeAndDetails(
      nameToResolve, ResolveNameSearchLocation.ContactsThenDirectory, false);
}