예제 #1
0
 void OnGetTags(IList <photo_tag> tags, Object state, FacebookException e)
 {
     if (e == null && tags != null)
     {
         foreach (photo_tag tag in tags)
         {
             if (!Tags.Contains(new FacebookPhotoTag(tag)))
             {
                 Tags.AddInternal(new FacebookPhotoTag(tag));
             }
         }
     }
 }