PackUriHelper.ResolvePartUri(Uri, Uri) メソッド

定義

ソース パーツ URI と、ターゲット パーツへの相対パスを含む URI が指定されている場合に、パーツ URI を返します。

public:
 static Uri ^ ResolvePartUri(Uri ^ sourcePartUri, Uri ^ targetUri);
public static Uri ResolvePartUri (Uri sourcePartUri, Uri targetUri);
static member ResolvePartUri : Uri * Uri -> Uri
Public Shared Function ResolvePartUri (sourcePartUri As Uri, targetUri As Uri) As Uri

パラメーター

sourcePartUri
Uri

ソース パーツの URI、または Package ルートを指定する "/"。

targetUri
Uri

ターゲット パーツへの相対 URI。

戻り値

Uri

指定した SourcePartUri パラメーターと targetUri パラメーターの間で解決されたターゲット パーツの URI。

例外

sourcePartUri または targetUrinull です。

sourcePartUri が有効なパーツ URI ではありません。

- または -

targetUri が有効な相対 URI ではありません。

ResolvePartUri メソッドを使用する方法の例を次に示します。 完全なサンプルについては、「 パッケージ サンプルの読み取り」を参照してください。

// 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.
' Open the Package.
' ('using' statement insures that 'package' is
'  closed and disposed when it goes out of scope.)
Using package As Package = Package.Open(packagePath, FileMode.Open, FileAccess.Read)
    Dim documentPart As PackagePart = Nothing
    Dim resourcePart As PackagePart = Nothing

    ' Get the Package Relationships and look for
    '   the Document part based on the RelationshipType
    Dim uriDocumentTarget As Uri = Nothing
    For Each relationship As PackageRelationship 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)
    Next relationship

    ' Get the Document part's Relationships,
    '   and look for required resources.
    Dim uriResourceTarget As Uri = Nothing
    For Each relationship As PackageRelationship 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)
    Next relationship

End Using ' end:using(Package package) - Close & dispose package.

注釈

のサンプル ケースを次の表に ResolvePartUri示します。

sourcePartUri targetUri 返された URI
/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

適用対象

こちらもご覧ください