InspectionPackage
WordProcessingRootPackage.InspectionPackage property
문서에 대한 검사 결과가 포함된 메타데이터 패키지를 가져옵니다. 패키지에는 경우에 따라 메타데이터로 간주될 수 있는 문서 부분에 대한 정보가 포함되어 있습니다.
public WordProcessingInspectionPackage InspectionPackage { get; }
자산 가치
문서에 대한 검사 결과가 포함된 메타데이터 패키지입니다.
비고
더 알아보기
예
이 코드 샘플은 WordProcessing 문서를 검사하는 방법을 보여줍니다.
using (Metadata metadata = new Metadata(Constants.InputDocx))
{
var root = metadata.GetRootPackage<WordProcessingRootPackage>();
if (root.InspectionPackage.Comments != null)
{
foreach (var comment in root.InspectionPackage.Comments)
{
Console.WriteLine(comment.Author);
Console.WriteLine(comment.CreatedDate);
Console.WriteLine(comment.Text);
// ...
}
}
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.Code);
Console.WriteLine(field.Result);
}
}
if (root.InspectionPackage.HiddenText != null)
{
foreach (var textFragment in root.InspectionPackage.HiddenText)
{
Console.WriteLine(textFragment);
}
}
if (root.InspectionPackage.Revisions != null)
{
foreach (var revision in root.InspectionPackage.Revisions)
{
Console.WriteLine(revision.Author);
Console.WriteLine(revision.DateTime);
Console.WriteLine(revision.RevisionType);
}
}
}