Esempio n. 1
0
 private void LazyLoad()
 {
     if (emails.Count == 0)
     {
         List <String> profiles = linkedIn.RequestRelatedContactsFromLinkedInAPI(this.email, this.type);
         foreach (var profile in profiles)
         {
             this.emails.Add(profile);
             this.contacts.Add(null);
         }
     }
 }