IMetadataDictionaryTTag, TEntry Interface

Represents a dictionary of image metadata, such as EXIF, IPTC, etc.

Definition

Namespace: GleamTech.ImageUltimate
Assembly: GleamTech.ImageUltimate (in GleamTech.ImageUltimate.dll) Version: 5.8.8
C#
public interface IMetadataDictionary<TTag, TEntry> : IEnumerable<TEntry>, 
	IEnumerable
where TEntry : Object, IMetadataEntry<TTag>
Implements
IEnumerableTEntry, IEnumerable

Type Parameters

TTag
The type of the tag.
TEntry
The type of the entry.

Properties

CountGets the number of entries contained in this dictionary.
IsChangedGets a value indicating whether this dictionary is changed.
ItemGets the entry for the specified tag.

Methods

ClearRemoves all entries from this dictionary.
ContainsDetermines whether this dictionary contains an entry with the specified tag.
GetEnumeratorReturns an enumerator that iterates through the collection.
(Inherited from IEnumerableTEntry)
RemoveRemoves the entry for the specified tag from this dictionary.
SetSets the value for the specified tag in this dictionary.
TryGetGets the entry associated with the specified tag.

See Also