SignatureResult Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates values returned by several types.
public enum SignatureResult
type SignatureResult =
- Inheritance
-
SignatureResult
Fields
FirstNotSigned | -1 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if the first package is not signed but the second is. |
Match | 0 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if all signatures on the two packages match. |
NeitherSigned | 1 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if neither of the two packages is signed. |
NoMatch | -3 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if not all signatures on both packages match. |
SecondNotSigned | -2 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if the second package is not signed but the first is. |
UnknownPackage | -4 | Signature check result: this is returned by CheckSignatures(Int32, Int32)if either of the packages are not valid. |
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.