Table of Contents

Class BatchSignResult

Namespace
SimpleSign.PAdES.Signing
Assembly
SimpleSign.PAdES.dll

Result of a single batch signing operation.

public sealed record BatchSignResult : IEquatable<BatchSignResult>
Inheritance
BatchSignResult
Implements
Inherited Members

Constructors

BatchSignResult(string, byte[]?, Exception?)

Result of a single batch signing operation.

public BatchSignResult(string Id, byte[]? SignedPdf, Exception? Error)

Parameters

Id string

Identifier of the input PDF.

SignedPdf byte[]

Signed PDF bytes, or null if signing failed.

Error Exception

Exception if signing failed, or null on success.

Properties

Error

Exception if signing failed, or null on success.

public Exception? Error { get; init; }

Property Value

Exception

Id

Identifier of the input PDF.

public string Id { get; init; }

Property Value

string

IsSuccess

Whether the signing operation succeeded.

public bool IsSuccess { get; }

Property Value

bool

SignedPdf

Signed PDF bytes, or null if signing failed.

public byte[]? SignedPdf { get; init; }

Property Value

byte[]