11 references to JwtBearerHandler
Microsoft.AspNetCore.Authentication.JwtBearer (5)
JwtBearerDefaults.cs (1)
7
/// Default values used by <see cref="
JwtBearerHandler
"/> for JWT bearer authentication.
JwtBearerEvents.cs (1)
7
/// Specifies events which the <see cref="
JwtBearerHandler
"/> invokes to enable developer control over the authentication process.
JwtBearerExtensions.cs (1)
79
return builder.AddScheme<JwtBearerOptions,
JwtBearerHandler
>(authenticationScheme, displayName, configureOptions);
JwtBearerHandler.cs (2)
23
/// Initializes a new instance of <see cref="
JwtBearerHandler
"/>.
32
/// Initializes a new instance of <see cref="
JwtBearerHandler
"/>.
Microsoft.AspNetCore.Authentication.Test (6)
AuthenticationMiddlewareTests.cs (4)
68
.Returns(Task.FromResult(new AuthenticationScheme("custom", "custom", typeof(
JwtBearerHandler
))));
91
.Returns(Task.FromResult(new AuthenticationScheme("custom", "custom", typeof(
JwtBearerHandler
))));
111
.Returns(Task.FromResult(new AuthenticationScheme("custom", "custom", typeof(
JwtBearerHandler
))));
137
.Returns(Task.FromResult(new AuthenticationScheme("custom", "custom", typeof(
JwtBearerHandler
))));
JwtBearerTests.cs (1)
30
protected override Type HandlerType => typeof(
JwtBearerHandler
);
JwtBearerTests_Handler.cs (1)
30
protected override Type HandlerType => typeof(
JwtBearerHandler
);