The details of a tag of a photo.
상속: IFlickrParsable
예제 #1
0
        private void ParseUrls(System.Xml.XmlReader reader)
        {
            reader.Read();

            while (reader.LocalName == "url")
            {
                PhotoInfoUrl url = new PhotoInfoUrl();
                ((IFlickrParsable)url).Load(reader);
                Urls.Add(url);
            }
        }
예제 #2
0
파일: PhotoInfo.cs 프로젝트: rmck/FlickrNet
 private void ParseUrls(XmlReader reader)
 {
     reader.Read();
       while (reader.LocalName == "url")
       {
     PhotoInfoUrl photoInfoUrl = new PhotoInfoUrl();
     photoInfoUrl.Load(reader);
     this.Urls.Add(photoInfoUrl);
       }
 }