PackagePartCollection.GetEnumerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.