Package.GetPart(Uri) Metodo

Definizione

Restituisce la parte con un URI specificato.

public System.IO.Packaging.PackagePart GetPart (Uri partUri);

Parametri

partUri
Uri

URI (Uniform Resource Identifier) della parte da restituire.

Restituisce

La parte con partUri specificato.

Eccezioni

partUri è null.

partUri non è un URI (Uniform Resource Identifier) PackagePart valido.

Una parte con partUri specificato non è nel pacchetto.

Il pacchetto non è aperto (Dispose(Boolean) o Close() è stato chiamato).

Il pacchetto è di sola scrittura.

Esempio

Nell'esempio seguente viene illustrato come individuare, recuperare e leggere parti contenute in un pacchetto.

// Open the Package.
// ('using' statement insures that 'package' is
//  closed and disposed when it goes out of scope.)
using (Package package =
    Package.Open(packagePath, FileMode.Open, FileAccess.Read))
{
    PackagePart documentPart = null;
    PackagePart resourcePart = null;

    // Get the Package Relationships and look for
    //   the Document part based on the RelationshipType
    Uri uriDocumentTarget = null;
    foreach (PackageRelationship relationship in
        package.GetRelationshipsByType(PackageRelationshipType))
    {
        // Resolve the Relationship Target Uri
        //   so the Document Part can be retrieved.
        uriDocumentTarget = PackUriHelper.ResolvePartUri(
            new Uri("/", UriKind.Relative), relationship.TargetUri);

        // Open the Document Part, write the contents to a file.
        documentPart = package.GetPart(uriDocumentTarget);
        ExtractPart(documentPart, targetDirectory);
    }

    // Get the Document part's Relationships,
    //   and look for required resources.
    Uri uriResourceTarget = null;
    foreach (PackageRelationship relationship in
        documentPart.GetRelationshipsByType(
                                ResourceRelationshipType))
    {
        // Resolve the Relationship Target Uri
        //   so the Resource Part can be retrieved.
        uriResourceTarget = PackUriHelper.ResolvePartUri(
            documentPart.Uri, relationship.TargetUri);

        // Open the Resource Part and write the contents to a file.
        resourcePart = package.GetPart(uriResourceTarget);
        ExtractPart(resourcePart, targetDirectory);
    }
}// end:using(Package package) - Close & dispose package.

Commenti

Viene InvalidOperationException generata un'eccezione se una parte con l'oggetto specificato partUri non esiste.

Il PartExists metodo può essere utilizzato per determinare se partUri fa riferimento a una parte esistente.

Per impostazione predefinita, viene fornita e utilizzata un'implementazione ZipPackage derivata della classe base astratta Package . Nell'operazione predefinita chiama GetPartGetPartCore internamente la ZipPackage classe per restituire una parte richiesta da un file ZIP.

Per altre informazioni, vedere la specifica OPC (Open Packaging Conventions) disponibile per il download all'indirizzo https://www.ecma-international.org/publications-and-standards/standards/ecma-376/.

Note per gli eredi

GetPart(Uri) internamente chiama il metodo della classe GetPartCore(Uri) derivata per scaricare effettivamente la parte in base al formato fisico implementato nella classe derivata.

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Vedi anche