AuthorizedReceiptBehavior 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.
Specifies how receipts whose issuer domains ARE in the authorized list should be enforced.
public enum AuthorizedReceiptBehavior
type AuthorizedReceiptBehavior =
Public Enum AuthorizedReceiptBehavior
- Inheritance
-
AuthorizedReceiptBehavior
Fields
| Name | Value | Description |
|---|---|---|
| VerifyAnyMatching | 0 | At least one receipt from any authorized domain must be present and valid. |
| VerifyAllMatching | 1 | ALL receipts whose issuer is in the authorized list MUST pass verification. Receipts not in the authorized list are treated according to UnauthorizedReceiptBehavior. |
| RequireAll | 2 | There MUST be at least one valid receipt for EACH domain in the authorized list (coverage requirement). If a domain has no receipt or only invalid receipts, verification fails. |