5 writes to MapInboundClaims
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerConfigureOptions.cs (1)
60options.MapInboundClaims = StringHelpers.ParseValueOrDefault( configSection[nameof(options.MapInboundClaims)], bool.Parse, options.MapInboundClaims);
Microsoft.AspNetCore.Authentication.Test (4)
JwtBearerTests.cs (2)
139options.MapInboundClaims = false; 148options.MapInboundClaims = false;
JwtBearerTests_Handler.cs (2)
129options.MapInboundClaims = false; 138options.MapInboundClaims = false;
8 references to MapInboundClaims
Microsoft.AspNetCore.Authentication.JwtBearer (3)
JwtBearerConfigureOptions.cs (2)
60options.MapInboundClaims = StringHelpers.ParseValueOrDefault( configSection[nameof(options.MapInboundClaims)], bool.Parse, options.MapInboundClaims);
JwtBearerOptions.cs (1)
145/// Gets or sets the <see cref="MapInboundClaims"/> property on the default instance of <see cref="JwtSecurityTokenHandler"/> in SecurityTokenValidators, or <see cref="JsonWebTokenHandler"/> in TokenHandlers, which is used when determining
Microsoft.AspNetCore.Authentication.Test (5)
JwtBearerTests.cs (2)
127Assert.True(options.MapInboundClaims); 149Assert.False(options.MapInboundClaims);
JwtBearerTests_Handler.cs (3)
117Assert.True(options.MapInboundClaims); 139Assert.False(options.MapInboundClaims); 991Assert.True(jwtBearerOptions.MapInboundClaims);