This documentation is for the old version. Go to the latest Graphics Mill docs

MetadataEnumerator Class

Provides a forward-only cursor to enumerate through metadata in a file.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Class MetadataEnumerator _
	Implements IDictionaryEnumerator
C#
public class MetadataEnumerator : IDictionaryEnumerator

Remarks

This interface should be implemented by each class that supports metadata.

This interface inherits from the IEnumerator interface.

Initially, the enumerator is positioned before the first element in the collection. At this position, calling Current throws an exception. Therefore, you must call MoveNext() to advance the enumerator to the first element of the collection before reading the value of Current.

After the end of the collection is passed, the enumerator is positioned after the last element in the collection, and calling MoveNext() returns false. If the last call to MoveNext() returned false, calling Current throws an exception.

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.Codecs.MetadataEnumerator

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also

Reference