PackagePartCollection.GetEnumerator Method

Definition

Returns an enumerator for iterating through the parts in the collection.

public:
 System::Collections::Generic::IEnumerator<System::IO::Packaging::PackagePart ^> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<System.IO.Packaging.PackagePart> GetEnumerator ();
member this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.IO.Packaging.PackagePart>
Public Function GetEnumerator () As IEnumerator(Of PackagePart)

Returns

An enumerator for iterating through the PackagePart elements in the collection.

Implements

Remarks

The collection accessed by the enumerator is invalidated after any change occurs to the underlying collection. The underlying collection can change when the Package.CreatePart method or Package.DeletePart method is called.

Applies to