Enum SignatureVerificationStatus
Represents the trust result of a signature.
public enum SignatureVerificationStatus
Fields
Disallowed = 2
The signature is disallowed based on verification settings.
Suspect = 1
Invalid package signature.
Unknown = 0
Default unknown value.
Valid = 3
Signature is valid for the verification step.
Remarks
The order of the elements on this enum is important. It should be ordered from most severe to valid. When a verification with multiple steps wants to be strict it should take the min out of each step as the status for the whole verification.