QualifierDataCollection.GetEnumerator Method

Definition

Returns an enumerator for the QualifierDataCollection. This method is strongly typed.

public:
 System::Management::QualifierDataCollection::QualifierDataEnumerator ^ GetEnumerator();
public System.Management.QualifierDataCollection.QualifierDataEnumerator GetEnumerator ();
member this.GetEnumerator : unit -> System.Management.QualifierDataCollection.QualifierDataEnumerator
Public Function GetEnumerator () As QualifierDataCollection.QualifierDataEnumerator

Returns

An IEnumerator that can be used to iterate through the collection.

Remarks

You can only iterate (as in a Visual Basic .NET For Each statement or a C# For statement) through a forward-only enumerator one time. The memory containing the instances is released by WMI so that the enumerator cannot be rewound. Therefore, the Count method cannot be used since it requires rewinding the enumerator.

Forward-only enumerators are generally much faster and use less memory than conventional enumerators, but they do not allow calls to Reset.

If an enumerator is rewindable, the objects in the collection will be kept available for multiple enumerations.

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Applies to