Class PdfSigningResult
- Namespace
- SimpleSign.PAdES.Signing
- Assembly
- SimpleSign.PAdES.dll
Detailed result of a PDF signing operation, returned by SignWithDetailsAsync(CancellationToken). Contains the signed PDF bytes and any non-fatal warnings raised during the operation.
public sealed class PdfSigningResult
- Inheritance
-
PdfSigningResult
- Inherited Members
Properties
DssEmbedded
Whether the DSS (Document Security Store) was actually embedded in the PDF.
Relevant only when LTV was requested via WithLtv() or WithArchivalTimestamp().
A value of false means revocation data was unavailable and the PDF is at PAdES B-T level.
public bool DssEmbedded { get; init; }
Property Value
The signed PDF bytes.
public byte[] Pdf { get; init; }
Property Value
- byte[]
Warnings
Non-fatal warnings raised during signing (e.g., LTV data unavailable, certificate lacks NonRepudiation). An empty list indicates a clean signing operation.
public IReadOnlyList<string> Warnings { get; init; }