PackUriHelper.ResolvePartUri(Uri, Uri) Méthode

Définition

Retourne un URI de composant à partir d'un URI de composant source et d'un URI avec chemin d'accès relatif à un composant cible.

C#
public static Uri ResolvePartUri (Uri sourcePartUri, Uri targetUri);

Paramètres

sourcePartUri
Uri

URI du composant source, ou « / » pour désigner la racine du Package.

targetUri
Uri

URI relatif vers le composant cible.

Retours

Uri

URI du composant cible résolu entre le SourcePartUri spécifié et les paramètres targetUri.

Exceptions

sourcePartUri ou targetUri est null.

sourcePartUri n'est pas un URI de composant valide.

- ou -

targetUri n'est pas un URI relatif valide.

Exemples

L'exemple suivant illustre l'utilisation de la méthode ResolvePartUri.

C#
// 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.

Remarques

Le tableau suivant illustre des exemples de cas pour ResolvePartUri.

sourcePartUri targetUri URI retourné
/mydoc/markup/page.xml picture.jpg /mydoc/markup/picture.jpg
/mydoc/markup/page.xml images/picture.jpg /mydoc/markup/images/picture.jpg
/mydoc/markup/page.xml ./picture.jpg /mydoc/markup/picture.jpg
/mydoc/markup/page.xml .. /picture.jpg /mydoc/picture.jpg
/mydoc/markup/page.xml .. /images/picture.jpg /mydoc/images/picture.jpg
/ images/picture.jpg /images/picture.jpg

S’applique à

Produit Versions
.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

Voir aussi