AbstractAcquireTokenParameterBuilder<T>.WithClaims(String) Method

Definition

Sets claims in the query. Use when the AAD admin has enabled conditional access. Acquiring the token normally will result in a MsalUiRequiredException with the Claims property set. Retry the token acquisition, and use this value in the WithClaims(String) method. See https://aka.ms/msal-exceptions for details as well as https://aka.ms/msal-net-claim-challenge.

public T WithClaims (string claims);
member this.WithClaims : string -> 'T
Public Function WithClaims (claims As String) As T

Parameters

claims
String

A string with one or multiple claims.

Returns

T

The builder to chain .With methods.

Applies to