KerberosTicketContainer Enum

Definition

Declares the type of container to use for Kerberos Ticket Claim.

public enum KerberosTicketContainer
type KerberosTicketContainer = 
Public Enum KerberosTicketContainer
Inheritance
KerberosTicketContainer

Fields

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.

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.

Applies to