ResolveNameWithSearchScopeAndDetailsAndPropertySet method

Future<NameResolutionCollection?> ResolveNameWithSearchScopeAndDetailsAndPropertySet(
  1. String nameToResolve,
  2. ResolveNameSearchLocation searchScope,
  3. bool returnContactDetails,
  4. PropertySet contactDataPropertySet,
)
Finds contacts in the Global Address List that have names that match the one passed as a parameter. Calling this method results in a call to EWS. The name to resolve. The scope of the search. Indicates whether full contact information should be returned for each of the found contacts. Propety set for contact details

Implementation

Future<NameResolutionCollection?>
    ResolveNameWithSearchScopeAndDetailsAndPropertySet(
        String nameToResolve,
        ResolveNameSearchLocation searchScope,
        bool returnContactDetails,
        PropertySet contactDataPropertySet) {
  return this.ResolveName(nameToResolve, null, searchScope,
      returnContactDetails, contactDataPropertySet);
}