Package.GetPartsCore Method

Definition

When overridden in a derived class, returns an array of all the parts in the package.

protected:
 abstract cli::array <System::IO::Packaging::PackagePart ^> ^ GetPartsCore();
protected abstract System.IO.Packaging.PackagePart[] GetPartsCore ();
abstract member GetPartsCore : unit -> System.IO.Packaging.PackagePart[]
Protected MustOverride Function GetPartsCore () As PackagePart()

Returns

An array of all the parts that are contained in the package.

Remarks

The derived class GetPartsCore implementation is called by the GetParts method to access and return the array of parts based on the physical format implemented in the derived class.

By default, a ZipPackage derived implementation of the abstract Package class is provided and used. In the default operation, GetParts internally calls GetPartCore of the ZipPackage class to retrieve the parts from a ZIP file.

For more information about the package model and package parts, see Chapter 1 of the Open Packaging Conventions (OPC) specification available for download at https://www.ecma-international.org/publications-and-standards/standards/ecma-376/.

Notes to Implementers

The derived GetPartsCore() implementation should make no assumptions about the order or operations performed by the GetParts() method that calls it.

Applies to

See also