Package.GetRelationshipsByType(String) 方法

定義

傳回符合特定 RelationshipType 的所有套件層級關係的集合。

C#
public System.IO.Packaging.PackageRelationshipCollection GetRelationshipsByType(string relationshipType);

參數

relationshipType
String

要進行比對並傳回集合的 RelationshipType

傳回

符合指定之 relationshipType 的套件層級關係的集合。

例外狀況

relationshipTypenull

relationshipType 為空字串。

套件沒有開啟 (已呼叫 Dispose(Boolean)Close())。

封裝是唯寫的。

範例

下列範例示範如何擷取為封裝定義的關聯性。

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.

備註

GetRelationships 永遠不會傳回 null;不過,如果沒有符合指定 relationshipType之 的封裝層級關聯性,傳回的集合可能會包含零個專案。

下表顯示 Open Packaging Conventions (OPC) 規格所定義的套件層級 relationshipType URI。

套件層級關聯性 關聯性類型 URI
核心屬性 http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties
數位簽章 http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/signature
數字簽名憑證 http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/certificate
數位簽名來源 http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/origin
縮圖 http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail

如需詳細資訊,請參閱 open Packaging Conventions (OPC) specification for download at https://www.ecma-international.org/publications-and-standards/standards/ecma-376/

適用於

產品 版本
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (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, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

另請參閱