retrieving illustrations from Multiterm .sdltb file

Anonymous
Offline Anonymous

Hello to everyone,

I have currently a problem trying to retrieve image content from a multiterm file.

I get the xml string,as described in the APi documentation

foreach (HitTerm Hit in Hits)
                {
                    int indexID = Int32.Parse(Hit.ParentEntryID);
                    Entry resultEntry = entryCollection.Item(indexID);

                    string xmlString = resultEntry.Content.Content;

                     XmlDocument doc = new XmlDocument();
                    doc.LoadXml(xmlString);

                 }

and I would like to know how it could be possible to retrieve any images from there.

Thank you in advance.

Regards

Nikos