InspectionPackage
PdfRootPackage.InspectionPackage property
ドキュメントの検査結果を含むメタデータ パッケージを取得します。 パッケージには、場合によってはメタデータと見なすことができるドキュメント パーツに関する情報が含まれます。
public PdfInspectionPackage InspectionPackage { get; }
プロパティ値
ドキュメントの検査結果を含むメタデータ パッケージ.
備考
もっと詳しく知る
例
この例では、PDF ドキュメントを検査する方法を示します。
using (Metadata metadata = new Metadata(Constants.SignedPdf))
{
var root = metadata.GetRootPackage<PdfRootPackage>();
if (root.InspectionPackage.Annotations != null)
{
foreach (var annotation in root.InspectionPackage.Annotations)
{
Console.WriteLine(annotation.Name);
Console.WriteLine(annotation.Text);
Console.WriteLine(annotation.PageNumber);
}
}
if (root.InspectionPackage.Attachments != null)
{
foreach (var attachment in root.InspectionPackage.Attachments)
{
Console.WriteLine(attachment.Name);
Console.WriteLine(attachment.MimeType);
Console.WriteLine(attachment.Description);
}
}
if (root.InspectionPackage.Bookmarks != null)
{
foreach (var bookmark in root.InspectionPackage.Bookmarks)
{
Console.WriteLine(bookmark.Title);
}
}
if (root.InspectionPackage.DigitalSignatures != null)
{
foreach (var signature in root.InspectionPackage.DigitalSignatures)
{
Console.WriteLine(signature.CertificateSubject);
Console.WriteLine(signature.Comments);
Console.WriteLine(signature.SignTime);
// ...
}
}
if (root.InspectionPackage.Fields != null)
{
foreach (var field in root.InspectionPackage.Fields)
{
Console.WriteLine(field.Name);
Console.WriteLine(field.Value);
// ...
}
}
}
関連項目
- class PdfInspectionPackage
- class PdfRootPackage
- 名前空間 GroupDocs.Metadata.Formats.Document
- 組み立て GroupDocs.Metadata