Type Default Value Read Only Static Description
Int32 None Yes No The number of Exif Records.
Notes

This property tells you how many Exif records are available. You can use the count instead of the default enumerator.

See Also

Item[Int32]

Item[String]

Example

The two blocks of code below are functionally equivalent, as explained above.

[C#]

Metadata metadata = new Metadata(Server.MapPath("rez/exif.jpg"));
foreach (var exifrec in metadata.Exif)
  Response.Write(exifrec.Name + ":" + exifrec.Value + "<br>");
for (int i = 0; i < metadata.Exif.Count; i++)
  Response.Write(metadata.Exif[i].Name + ":" + metadata.Exif[i].Value + "<br>");