2 instantiations of AuthenticatedContext
Microsoft.AspNetCore.Authentication.Negotiate (2)
NegotiateHandler.cs (2)
354authenticatedContext = new AuthenticatedContext(Context, Scheme, Options) 361authenticatedContext = new AuthenticatedContext(Context, Scheme, Options)
4 references to AuthenticatedContext
Microsoft.AspNetCore.Authentication.Negotiate (4)
Events\AuthenticatedContext.cs (1)
14/// Creates a new <see cref="AuthenticatedContext"/>.
Events\NegotiateEvents.cs (2)
25public Func<AuthenticatedContext, Task> OnAuthenticated { get; set; } = context => Task.CompletedTask; 45public virtual Task Authenticated(AuthenticatedContext context) => OnAuthenticated(context);
NegotiateHandler.cs (1)
336AuthenticatedContext authenticatedContext;