Table of Contents

Class VerifySignaturesResult

Namespace
NuGet.Packaging.Signing
Assembly
Chocolatey.NuGet.Packaging.dll

Collection of signature verification results.

public sealed class VerifySignaturesResult
Inheritance
VerifySignaturesResult
Inherited Members

Constructors

VerifySignaturesResult(bool, bool)

public VerifySignaturesResult(bool isValid, bool isSigned)

Parameters

isValid bool
isSigned bool

VerifySignaturesResult(bool, bool, IEnumerable<PackageVerificationResult>)

public VerifySignaturesResult(bool isValid, bool isSigned, IEnumerable<PackageVerificationResult> results)

Parameters

isValid bool
isSigned bool
results IEnumerable<PackageVerificationResult>

Properties

IsSigned

True if the package is signed.

public bool IsSigned { get; }

Property Value

bool

IsValid

True if signature is valid.

public bool IsValid { get; }

Property Value

bool

Results

Individual trust results.

public IReadOnlyList<PackageVerificationResult> Results { get; }

Property Value

IReadOnlyList<PackageVerificationResult>