5 writes to MapInboundClaims
Microsoft.AspNetCore.Authentication.JwtBearer (1)
JwtBearerConfigureOptions.cs (1)
58options.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)
137options.MapInboundClaims = false; 146options.MapInboundClaims = false;
8 references to MapInboundClaims
Microsoft.AspNetCore.Authentication.JwtBearer (3)
JwtBearerConfigureOptions.cs (2)
58options.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)
125Assert.True(options.MapInboundClaims); 147Assert.False(options.MapInboundClaims); 998Assert.True(jwtBearerOptions.MapInboundClaims); // Assert default values are respected