AnalysisWarningCollection.AnalysisWarningCollectionEnumerator Class
An implementation of the IEnumerator interface that can iterate through an AnalysisWarningCollection.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
'Declaration
Public Class AnalysisWarningCollectionEnumerator _
Implements IEnumerator
'Usage
Dim instance As AnalysisWarningCollection.AnalysisWarningCollectionEnumerator
public class AnalysisWarningCollectionEnumerator : IEnumerator
public ref class AnalysisWarningCollectionEnumerator : IEnumerator
public class AnalysisWarningCollectionEnumerator implements IEnumerator
The following example iterates through all of the AnalysisWarning objects in an AnalysisWarningCollection named warnings, and collects all of the associated Hint nodes.
' Version using GetEnumerator()
Dim enumerator As AnalysisWarningCollection.AnalysisWarningCollectionEnumerator = warnings.GetEnumerator()
While enumerator.MoveNext()
Dim hint As AnalysisHintNode = CType(enumerator.Current, AnalysisWarning).AnalysisHint
hints.Add(hint)
End While
// Version using GetEnumerator()
AnalysisWarningCollection.AnalysisWarningCollectionEnumerator enumerator = warnings.GetEnumerator();
while (enumerator.MoveNext())
{
AnalysisHintNode hint = ((AnalysisWarning)enumerator.Current).AnalysisHint;
hints.Add(hint);
}
System.Object
System.Windows.Ink.AnalysisWarningCollection.AnalysisWarningCollectionEnumerator
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Supported in: 3.0
AnalysisWarningCollection.AnalysisWarningCollectionEnumerator Members