The details of a tag of a photo.
Inheritance: IFlickrParsable
Exemple #1
0
        private void ParseTags(System.Xml.XmlReader reader)
        {
            reader.Read();

            while (reader.LocalName == "tag")
            {
                PhotoInfoTag tag = new PhotoInfoTag();
                ((IFlickrParsable)tag).Load(reader);
                Tags.Add(tag);
            }
        }
Exemple #2
0
 private void ParseTags(XmlReader reader)
 {
     reader.Read();
       while (reader.LocalName == "tag")
       {
     PhotoInfoTag photoInfoTag = new PhotoInfoTag();
     photoInfoTag.Load(reader);
     this.Tags.Add(photoInfoTag);
       }
 }