// Token: 0x06001CB2 RID: 7346 RVA: 0x00072D96 File Offset: 0x00070F96
 private static Dictionary <string, PeopleSpeechPersonObject> RetrieveGALContactsFromXML(string result)
 {
     return(FindPeopleSpeechRecognitionResultHandler.RetrieveContactFromXMLHelper(result, "GALSearch", "SMTP", "ObjectGuid", delegate(Dictionary <string, PeopleSpeechPersonObject> galContactPersons, PeopleSpeechPersonObject personObject)
     {
         FindPeopleSpeechRecognitionResultHandler.AddContactToUniqueDictionary(personObject.GALLinkId, personObject, galContactPersons);
     }));
 }
 // Token: 0x06001CB1 RID: 7345 RVA: 0x00072D4C File Offset: 0x00070F4C
 private static Dictionary <string, PeopleSpeechPersonObject> RetrieveUniquePersonalContactsFromXML(string result, List <string> galLinksToRemove)
 {
     return(FindPeopleSpeechRecognitionResultHandler.RetrieveContactFromXMLHelper(result, "PersonalContactSearch", "PersonId", "GALLinkID", delegate(Dictionary <string, PeopleSpeechPersonObject> personalContactPersons, PeopleSpeechPersonObject personObject)
     {
         FindPeopleSpeechRecognitionResultHandler.AddContactToUniqueDictionary(personObject.Identifier, personObject, personalContactPersons);
         galLinksToRemove.Add(personObject.GALLinkId);
     }));
 }