KerberosTicketContainer 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.
Declares the type of container to use for Kerberos Ticket Claim.
public enum KerberosTicketContainer
type KerberosTicketContainer =
Public Enum KerberosTicketContainer
- Inheritance
-
KerberosTicketContainer
Fields
Name | Value | Description |
---|---|---|
IdToken | 0 | Use the Id token as the Kerberos Ticket container. (NOTE) MSAL will read out Kerberos Service Ticket from received id token, cache into current user's ticket cache, and return it as KerberosSupplementalTicket object in AuthenticationResult. |
AccessToken | 1 | Use the Access Token as the Kerberos Ticket container. (NOTE) MSAL will not read out Kerberos Service Ticket from received access token. Caller should handle received access token directly to use for next service request. |