MsalServiceException.Claims Property
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.
Additional claims requested by the service. When this property is not null or empty, this means that the service requires the user to provide additional claims, such as doing two factor authentication. The are two cases:
- If your application is a IPublicClientApplication, you should just call AcquireTokenInteractive(IEnumerable<String>) and add the WithClaims(String) modifier.
- If your application is a IConfidentialClientApplication, (therefore doing the On-Behalf-Of flow), you should throw an HTTP unauthorize exception with a message containing the claims
[System.Text.Json.Serialization.JsonInclude]
public string Claims { get; }
[<System.Text.Json.Serialization.JsonInclude>]
member this.Claims : string
Public ReadOnly Property Claims As String
Property Value
- Attributes