IMetadataDictionaryTTag, TEntry Interface
Represents a dictionary of image metadata, such as EXIF, IPTC, etc.
Namespace: GleamTech.ImageUltimateAssembly: GleamTech.ImageUltimate (in GleamTech.ImageUltimate.dll) Version: 6.2.0
public interface IMetadataDictionary<TTag, TEntry> : IEnumerable<TEntry>,
IEnumerable
where TEntry : Object, IMetadataEntry<TTag>
Public Interface IMetadataDictionary(Of TTag, TEntry As {Object, IMetadataEntry(Of TTag)})
Inherits IEnumerable(Of TEntry), IEnumerable
- Implements
- IEnumerableTEntry, IEnumerable
Type Parameters
- TTag
- The type of the tag.
- TEntry
- The type of the entry.
Count | Gets the number of entries contained in this dictionary. |
IsChanged | Gets a value indicating whether this dictionary is changed. |
Item | Gets the entry for the specified tag. |
Clear | Removes all entries from this dictionary. |
Contains | Determines whether this dictionary contains an entry with the specified tag. |
GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerableTEntry) |
Remove | Removes the entry for the specified tag from this dictionary. |
Set | Sets the value for the specified tag in this dictionary. |
TryGet | Gets the entry associated with the specified tag. |