1 instantiation of UserInformationReceivedContext
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectHandler.cs (1)
1227var context = new UserInformationReceivedContext(Context, Scheme, Options, principal, properties)
9 references to UserInformationReceivedContext
Microsoft.AspNetCore.Authentication.OpenIdConnect (7)
Events\OpenIdConnectEvents.cs (2)
62public Func<UserInformationReceivedContext, Task> OnUserInformationReceived { get; set; } = context => Task.CompletedTask; 115public virtual Task UserInformationReceived(UserInformationReceivedContext context) => OnUserInformationReceived(context);
Events\UserInformationReceivedContext.cs (2)
12/// A context for <see cref="OpenIdConnectEvents.UserInformationReceived(UserInformationReceivedContext)"/>. 17/// Initializes a new instance of <see cref="UserInformationReceivedContext"/>.
OpenIdConnectHandler.cs (3)
972var userInformationReceivedContext = await RunUserInformationReceivedEventAsync(principal, properties, message, user); 1223private async Task<UserInformationReceivedContext> RunUserInformationReceivedEventAsync(ClaimsPrincipal principal, AuthenticationProperties properties, OpenIdConnectMessage message, JsonDocument user) 1227var context = new UserInformationReceivedContext(Context, Scheme, Options, principal, properties)
Microsoft.AspNetCore.Authentication.Test (2)
OpenIdConnect\OpenIdConnectEventTests.cs (1)
1199public override Task UserInformationReceived(UserInformationReceivedContext context)
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
1199public override Task UserInformationReceived(UserInformationReceivedContext context)